Generated model Answer with migration

This commit is contained in:
Prelang Builder
2014-02-27 23:58:44 +00:00
committed by u7482
parent 575b6b5b7e
commit de46fe4065
4 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class CreateAnswers < ActiveRecord::Migration
def change
create_table :answers do |t|
t.text :response
t.references :question, index: true
t.timestamps
end
end
end