-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcolumn-types.js
64 lines (64 loc) · 1.16 KB
/
column-types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Auto-generated from https://laravel.com/docs/8.x/migrations#available-column-types
// By running `$$('#collection-method-list [href^="#column-method"]').map(c => c.innerText)` in the devtools console.
module.exports = [
'bigIncrements',
'bigInteger',
'binary',
'boolean',
'char',
'dateTimeTz',
'dateTime',
'date',
'decimal',
'double',
'enum',
'float',
'foreignId',
'geometryCollection',
'geometry',
'increments',
'integer',
'ipAddress',
'json',
'jsonb',
'lineString',
'longText',
'macAddress',
'mediumIncrements',
'mediumInteger',
'mediumText',
'morphs',
'multiLineString',
'multiPoint',
'multiPolygon',
'nullableMorphs',
'nullableTimestamps',
'nullableUuidMorphs',
'point',
'polygon',
'rememberToken',
'set',
'smallIncrements',
'smallInteger',
'softDeletesTz',
'softDeletes',
'string',
'text',
'timeTz',
'time',
'timestampTz',
'timestamp',
'timestampsTz',
'timestamps',
'tinyIncrements',
'tinyInteger',
'unsignedBigInteger',
'unsignedDecimal',
'unsignedInteger',
'unsignedMediumInteger',
'unsignedSmallInteger',
'unsignedTinyInteger',
'uuidMorphs',
'uuid',
'year'
]