the migrations to the changes in schema.rb.
This commit is contained in:
@ -0,0 +1,5 @@
|
|||||||
|
class AddSubmissionToRequestForComments < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
add_reference :request_for_comments, :submission
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,5 @@
|
|||||||
|
class RemoveRequestedAtFromRequestForComments < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
remove_column :request_for_comments, :requested_at
|
||||||
|
end
|
||||||
|
end
|
Reference in New Issue
Block a user