Files
prelang_test/db/migrate/20140227235855_create_questions.rb
2014-02-27 23:58:55 +00:00

10 lines
154 B
Ruby

class CreateQuestions < ActiveRecord::Migration
def change
create_table :questions do |t|
t.text :title
t.timestamps
end
end
end