osem-fcy/db/migrate/20140109191042_create_answers.rb

10 lines
152 B
Ruby
Raw Normal View History

2014-02-09 18:05:57 +02:00
class CreateAnswers < ActiveRecord::Migration
def change
create_table :answers do |t|
t.string :title
t.timestamps
end
end
end