mirror of
https://github.com/beego/bee.git
synced 2024-11-22 15:10:54 +00:00
fix cannot migrate with Postgres
This commit is contained in:
parent
1566ca7da1
commit
1767458b66
@ -244,7 +244,7 @@ func selectMigrationsTableSql(driver string) string {
|
|||||||
case "mysql":
|
case "mysql":
|
||||||
return "DESC migrations"
|
return "DESC migrations"
|
||||||
case "postgres":
|
case "postgres":
|
||||||
return "SELECT * FROM migrations ORDER BY id_migration;"
|
return "SELECT * FROM migrations WHERE false ORDER BY id_migration;"
|
||||||
default:
|
default:
|
||||||
return "DESC migrations"
|
return "DESC migrations"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user