Files
grecia/db/migrate/20190528134530_create_votation_set_answers.rb

13 lines
289 B
Ruby

class CreateVotationSetAnswers < ActiveRecord::Migration[5.0]
def change
create_table :votation_set_answers do |t|
t.integer :author_id, index: true
t.references :votation_type, foreign_key: true, index: true
t.string :answer
t.timestamps
end
end
end