new interface

This commit is contained in:
Lunny Xiao 2014-04-21 11:15:12 +08:00
parent ea82aa0fbf
commit 05943b9679
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ type Dialect interface {
DropTableSql(tableName string) string
IndexCheckSql(tableName, idxName string) (string, []interface{})
TableCheckSql(tableName string) (string, []interface{})
ColumnCheckSql(tableName, colName string) (string, []interface{})
ColumnCheckSql(tableName, colName string, isPK bool) (string, []interface{})
CreateTableSql(table *Table, tableName, storeEngine, charset string) string
CreateIndexSql(tableName string, index *Index) string