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

12 lines
183 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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