1
0
mirror of https://github.com/beego/bee.git synced 2025-07-12 09:51:00 +00:00

Merge pull request #223 from saturn4er/patch-1

Some fixes in README.md
This commit is contained in:
astaxie
2016-07-13 13:50:58 +08:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@ -246,7 +246,7 @@ func selectMigrationsTableSql(driver string) string {
case "mysql":
return "DESC migrations"
case "postgres":
return "SELECT * FROM migrations ORDER BY id_migration;"
return "SELECT * FROM migrations WHERE false ORDER BY id_migration;"
default:
return "DESC migrations"
}