osem-fcy/db/migrate/20140109191042_create_answers.rb
2014-02-09 18:05:57 +02:00

9 lines
152 B
Ruby

class CreateAnswers < ActiveRecord::Migration
def change
create_table :answers do |t|
t.string :title
t.timestamps
end
end
end