-
Notifications
You must be signed in to change notification settings - Fork 126
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
Use t.column instead of t.#{type} for database dependent types definition #114
Conversation
Please wait for fixing and adding test 😖 |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
7 similar comments
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Changes Unknown when pulling 38bc2df on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
Done, but this Pull Request needs #115 to pass specs before merging this. |
Changes Unknown when pulling 7d6287b on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
1 similar comment
Changes Unknown when pulling 7d6287b on aycabta:use-column-for-definition into ** on winebarrel:0.7**. |
I'm sorry... |
Merged. I will try to fix failed test. I think it's a good fix :-) |
I added tests for this Pull Request at 7d6287b, but I think it may become to be unnecessary for new test set of Ridgepole for ActiveRecord 5.1. OK, please merge after your works for 5.1 are finished.
DO NOT apologize. This is your software. You have all prerogatives for it. I wish you glory about all works. By the way, I can give help for maintenance others. Please take me commi...
Wooow. It's so early. Great works! |
Can you merge branch |
yes. backport it. |
0.6.6.beta has been released. |
OK! Thanks a lot!! |
I succeeded in my product code, thank you! ❤️ |
In ActiveRecord, the documant of
TableDefinition#column
saysAnd the document of
ConnectionAdapters::SchemaStatements#add_column
saysSo I may use some database dependent types, but Ridgepole spoils this feature because it uses
t.#{column_type}
for definition.This Pull Request changes it with
t.column
. Ridgepole users may use database dependent types.