fix(sql): Add boolstr to all dialects

closes #6116
This commit is contained in:
bergquist
2016-09-23 09:36:15 +02:00
parent 521b5cf014
commit e5c64732f1
7 changed files with 20 additions and 3 deletions
@@ -18,6 +18,7 @@ type Dialect interface {
SupportEngine() bool
LikeStr() string
Default(col *Column) string
BooleanStr(bool) string
CreateIndexSql(tableName string, index *Index) string
CreateTableSql(table *Table) string