osem-fcy/db/migrate/20140109191042_create_answers.rb
2018-04-04 10:28:10 -07:00

11 lines
183 B
Ruby

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