We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b5f66 commit 61be5faCopy full SHA for 61be5fa
shared/ezFunctions.php
@@ -114,6 +114,7 @@
114
const CLOB = 'CLOB';
115
116
// Numeric SQL data types
117
+ const INTR = 'INT';
118
const INT0 = 'INT';
119
const INT2 = 'INT2';
120
const INT4 = 'INT4';
@@ -164,11 +165,14 @@
164
165
const FOREIGN = 'FOREIGN KEY';
166
const UNIQUE = 'UNIQUE';
167
const INDEX = 'INDEX';
168
+ const REFERENCES = 'REFERENCES';
169
170
const AUTO = 'AUTO_INCREMENT';
171
+ const IDENTITY = 'IDENTITY(1,1)';
172
173
const ADD = 'ADD';
174
const DROP = 'DROP COLUMN';
175
+ const CHANGE = 'CHANGE';
176
177
const _DS = \DIRECTORY_SEPARATOR;
178
0 commit comments