columncompiler.js
2.31 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// MySQL Column Compiler
// -------
import inherits from 'inherits';
import ColumnCompiler from '../../../schema/columncompiler';
import * as helpers from '../../../helpers';
import { assign } from 'lodash'
function ColumnCompiler_MSSQL() {
ColumnCompiler.apply(this, arguments);
this.modifiers = ['nullable', 'defaultTo', 'first', 'after', 'comment']
}
inherits(ColumnCompiler_MSSQL, ColumnCompiler);
// Types
// ------
assign(ColumnCompiler_MSSQL.prototype, {
increments: 'int identity(1,1) not null primary key',
bigincrements: 'bigint identity(1,1) not null primary key',
bigint: 'bigint',
double(precision, scale) {
if (!precision) return 'decimal'
return `decimal(${this._num(precision, 8)}, ${this._num(scale, 2)})`
},
floating(precision, scale) {
if (!precision) return 'decimal'
return `decimal(${this._num(precision, 8)}, ${this._num(scale, 2)})`
},
integer(length) {
length = length ? `(${this._num(length, 11)})` : ''
return `int${length}`
},
mediumint: 'int',
smallint: 'smallint',
tinyint(length) {
length = length ? `(${this._num(length, 1)})` : ''
return `tinyint${length}`
},
varchar(length) {
return `nvarchar(${this._num(length, 255)})`;
},
text: 'nvarchar(max)',
mediumtext: 'nvarchar(max)',
longtext: 'nvarchar(max)',
enu: 'nvarchar(100)',
uuid: 'uniqueidentifier',
datetime: 'datetime',
timestamp: 'datetime',
bit(length) {
if (length > 1) {
helpers.warn('Bit field is exactly 1 bit length for MSSQL');
}
return 'bit';
},
binary(length) {
return length ? `varbinary(${this._num(length)})` : 'varbinary(max)'
},
bool: 'bit',
// Modifiers
// ------
defaultTo(value) {
const defaultVal = ColumnCompiler_MSSQL.super_.prototype.defaultTo.apply(this, arguments);
if (this.type !== 'blob' && this.type.indexOf('text') === -1) {
return defaultVal
}
return ''
},
first() {
helpers.warn('Column first modifier not available for MSSQL');
return '';
},
after(column) {
helpers.warn('Column after modifier not available for MSSQL');
return '';
},
comment(comment) {
if (comment && comment.length > 255) {
helpers.warn('Your comment is longer than the max comment length for MSSQL')
}
return ''
}
})
export default ColumnCompiler_MSSQL;