-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest persistent fails tests #75
Comments
Yeah, change showColumn :: Column -> MigrateSql
showColumn Column{..} = concatSql
(\sqls -> Text.unwords $ [quote colName, sqlType] ++ sqls)
$ map showColumnProp colProps
where
sqlType = case (AutoIncrement `elem` colProps, colType) of
(True, SqlInt32) -> "SERIAL"
(True, SqlInt64) -> "BIGSERIAL"
_ -> showSqlType colType |
kaldonir
pushed a commit
to kaldonir/persistent-migration
that referenced
this issue
Jun 2, 2021
Solution taken from brandonchinn178#75
tfc
pushed a commit
to tfc/persistent-migration
that referenced
this issue
Sep 27, 2021
Solution taken from brandonchinn178#75 Author: kaldonir <[email protected]> Date: Wed Jun 2 17:17:39 2021 +0200
tfc
pushed a commit
to tfc/persistent-migration
that referenced
this issue
Sep 27, 2021
Solution taken from brandonchinn178#75 Author: kaldonir <[email protected]> Date: Wed Jun 2 17:17:39 2021 +0200
tfc
pushed a commit
to tfc/persistent-migration
that referenced
this issue
Sep 27, 2021
Solution taken from brandonchinn178#75 Author: kaldonir <[email protected]> Date: Wed Jun 2 17:17:39 2021 +0200
tfc
pushed a commit
to tfc/persistent-migration
that referenced
this issue
Sep 27, 2021
Solution taken from brandonchinn178#75 Author: kaldonir <[email protected]> Date: Wed Jun 2 17:17:39 2021 +0200
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tests are failing with latest Persistent, example is here
https://github.com/coingaming/persistent-migration
Any ideas how to fix it?
The text was updated successfully, but these errors were encountered: