-
Notifications
You must be signed in to change notification settings - Fork 301
Open
Description
Not possible to migrate if there is a table with the same name in other schema.
Example:
There is an existing "stat"."user" table
and the migration is for "public"."user" (default schema)
Extra: models
User
username Text sqltype=varchar(17)
....
Result:
persistent is not creating the table "user" in "public" because of the one in "stat", after it I get:
*** Exception: SqlError {sqlState = "42P01", sqlExecStatus = FatalError, sqlErrorMsg = "relation \"user\" does not exist", sqlErrorDetail =
"", sqlErrorHint = ""}