-
Notifications
You must be signed in to change notification settings - Fork 125
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
Add DialogFieldAssociation table #41
Add DialogFieldAssociation table #41
Conversation
04f2a82
to
d0fef44
Compare
def change | ||
create_table :dialog_field_associations, :id => false do |t| | ||
t.integer "dialog_field_trigger_id", :null => false | ||
t.integer "dialog_field_respond_id", :null => false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Please use symbols for consistency.
- Please remove the :null => false.
- All tables must have an id for replication purposes, so remove the :id => false
d0fef44
to
90a1c9e
Compare
@Fryguy Fixed, thanks. |
90a1c9e
to
191373b
Compare
@Fryguy I'm assuming the Rubocop issues are ignorable considering all the rest of the migrations are written similarly to how I wrote them, but please let me know if I need to fix those issues to get this merged. Thanks. |
191373b
to
9eb1b33
Compare
Checked commit eclarizio@9eb1b33 with ruby 2.2.6, rubocop 0.47.1, and haml-lint 0.20.0 |
This is in preparation for the targeted auto-refresh enhancement. We will need dialog fields to be associated to one another.
Here is the corresponding main repo PR
https://www.pivotaltracker.com/story/show/148013179
@gmcculloug I don't know if you have merge rights on this repo but I figured I'd tag you anyway.