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
This would just be a nice little helper method for creating and dropping sequences
create_sequence :account, :number # CREATE SEQUENCE accounts_number_seq drop_sequence :account, :number # DROP SEQUENCE accounts_number_seq
I think sequences need an OWNED BY.... so not sure how that plays in, but whomever takes this on can look in to it.
OWNED BY
The text was updated successfully, but these errors were encountered:
Adding create_sequence and drop_sequence migration helpers. Fixes #910
40bcf28
Adding create_sequence and drop_sequence migration helpers. Fixes #910 (
0366d79
#1003)
Successfully merging a pull request may close this issue.
This would just be a nice little helper method for creating and dropping sequences
I think sequences need an
OWNED BY
.... so not sure how that plays in, but whomever takes this on can look in to it.The text was updated successfully, but these errors were encountered: