We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
The migrator generates a non-incrementing, nullable field for integer_primary_key.
integer_primary_key
To Reproduce
An attribute defined as:
integer_primary_key :id
generates:
add(:id, :integer, null: true, default: nil, primary_key: true)
Expected behavior
add(:id, :serial, null: false, primary_key: true)
The text was updated successfully, but these errors were encountered:
This is currently tracked in #32, thanks for reporting it in further detail!
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The migrator generates a non-incrementing, nullable field for
integer_primary_key
.To Reproduce
An attribute defined as:
generates:
Expected behavior
The text was updated successfully, but these errors were encountered: