osem-fcy/db/migrate/20130815085420_create_votes.rb

18 lines
270 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-08-16 12:46:49 +03:00
class CreateVotes < ActiveRecord::Migration
def up
create_table :votes do |t|
t.references :person
t.references :event
t.integer :rating
t.timestamps
end
end
def down
drop_table :votes
end
end