(t *testing.T)
| 6 | ) |
| 7 | |
| 8 | func TestDialect_Column(t *testing.T) { |
| 9 | c1 := DialectSQLite.Column("foo", ColumnTypeBool, UnsetSize) |
| 10 | assert.Equal(t, DialectSQLite, c1.Dialect) |
| 11 | c2 := DialectMySQL.Column("foo", ColumnTypeBool, UnsetSize) |
| 12 | assert.Equal(t, DialectMySQL, c2.Dialect) |
| 13 | } |
| 14 | |
| 15 | func TestColumnType_Format(t *testing.T) { |
| 16 | type args struct { |