diff --git a/db/migrate/20160630154310_add_submission_to_request_for_comments.rb b/db/migrate/20160630154310_add_submission_to_request_for_comments.rb new file mode 100644 index 00000000..d7d13e67 --- /dev/null +++ b/db/migrate/20160630154310_add_submission_to_request_for_comments.rb @@ -0,0 +1,5 @@ +class AddSubmissionToRequestForComments < ActiveRecord::Migration + def change + add_reference :request_for_comments, :submission + end +end diff --git a/db/migrate/20160701092140_remove_requested_at_from_request_for_comments.rb b/db/migrate/20160701092140_remove_requested_at_from_request_for_comments.rb new file mode 100644 index 00000000..bb5611f6 --- /dev/null +++ b/db/migrate/20160701092140_remove_requested_at_from_request_for_comments.rb @@ -0,0 +1,5 @@ +class RemoveRequestedAtFromRequestForComments < ActiveRecord::Migration + def change + remove_column :request_for_comments, :requested_at + end +end