-
Notifications
You must be signed in to change notification settings - Fork 280
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
sql-migrate status fails with "Could not create constraint or index" #211
Comments
Relates to #117 |
FYI this is only happening after upgrading to v1.1.0+. v1.0.0 is working fine.
|
I think this is being caused by go-gorp/gorp#450 |
This happens on my stack as well, I have a mssql database set up on a docker container and I'm able to connect my application and create tables through raw queries, however, even after setting up an empty database and running |
Hello, I reproduce the same issue. I try with the last version of sql-migration and it gave me After downgrading as suggested by @esetnik in 1.0.0, it worked. My config: development:
dialect: mssql
datasource: sqlserver://sa:password@localhost:1433
dir: migrations
table: migrations |
$ go get -v github.com/rubenv/sql-migrate/...@v1.1.1 $ sql-migrate status -env="dev" mssql: Could not create constraint or index. See previous errors.
How can I see previous errors as nothing else is output in the terminal. Also why is a constraint or index attempting to be created when running the status command?
The text was updated successfully, but these errors were encountered: