use 4 spaces replace tab
This commit is contained in:
parent
420faa1e66
commit
286b8725ed
8
table.go
8
table.go
|
@ -42,8 +42,6 @@ var (
|
||||||
Text = "TEXT"
|
Text = "TEXT"
|
||||||
MediumText = "MEDIUMTEXT"
|
MediumText = "MEDIUMTEXT"
|
||||||
LongText = "LONGTEXT"
|
LongText = "LONGTEXT"
|
||||||
Binary = "BINARY"
|
|
||||||
VarBinary = "VARBINARY"
|
|
||||||
|
|
||||||
Date = "DATE"
|
Date = "DATE"
|
||||||
DateTime = "DATETIME"
|
DateTime = "DATETIME"
|
||||||
|
@ -58,6 +56,8 @@ var (
|
||||||
Float = "FLOAT"
|
Float = "FLOAT"
|
||||||
Double = "DOUBLE"
|
Double = "DOUBLE"
|
||||||
|
|
||||||
|
Binary = "BINARY"
|
||||||
|
VarBinary = "VARBINARY"
|
||||||
TinyBlob = "TINYBLOB"
|
TinyBlob = "TINYBLOB"
|
||||||
Blob = "BLOB"
|
Blob = "BLOB"
|
||||||
MediumBlob = "MEDIUMBLOB"
|
MediumBlob = "MEDIUMBLOB"
|
||||||
|
@ -84,8 +84,6 @@ var (
|
||||||
Text: true,
|
Text: true,
|
||||||
MediumText: true,
|
MediumText: true,
|
||||||
LongText: true,
|
LongText: true,
|
||||||
Binary: true,
|
|
||||||
VarBinary: true,
|
|
||||||
|
|
||||||
Date: true,
|
Date: true,
|
||||||
DateTime: true,
|
DateTime: true,
|
||||||
|
@ -96,6 +94,8 @@ var (
|
||||||
Decimal: true,
|
Decimal: true,
|
||||||
Numeric: true,
|
Numeric: true,
|
||||||
|
|
||||||
|
Binary: true,
|
||||||
|
VarBinary: true,
|
||||||
Real: true,
|
Real: true,
|
||||||
Float: true,
|
Float: true,
|
||||||
Double: true,
|
Double: true,
|
||||||
|
|
Loading…
Reference in New Issue