Amend db script

This commit is contained in:
Felix Wolff
2015-03-27 18:15:18 +01:00
parent 0100e6a9cc
commit f73051eabd

View File

@ -0,0 +1,12 @@
class CreateRequestForComments < ActiveRecord::Migration
def change
create_table :request_for_comments do |t|
t.integer :requestorid, :null => false
t.integer :exerciseid, :null => false
t.integer :fileid, :null => false
t.timestamp :requested_at
t.timestamps
end
end
end