DB Migrations #67

Merged
konrad merged 44 commits from feature/migrations into master 2019-03-29 17:54:36 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 41bd600046 - Show all commits

View File

@ -115,7 +115,7 @@ func dropTableColum(x *xorm.Engine, tableName, col string) error {
}
func initSchema(tx *xorm.Engine) error {
return tx.StoreEngine("InnoDB").Sync2(
return tx.Sync2(
models.GetTables()...,
)
}