the migrations to the changes in schema.rb.

This commit is contained in:
Ralf Teusner
2016-07-04 17:46:37 +02:00
parent 223df2ffa8
commit 59536ab189
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddSubmissionToRequestForComments < ActiveRecord::Migration
def change
add_reference :request_for_comments, :submission
end
end

View File

@ -0,0 +1,5 @@
class RemoveRequestedAtFromRequestForComments < ActiveRecord::Migration
def change
remove_column :request_for_comments, :requested_at
end
end