Files
danbooru/db/migrate/20100215223541_create_post_votes.rb
2013-03-19 23:10:10 +11:00

18 lines
406 B
Ruby

class CreatePostVotes < ActiveRecord::Migration
def self.up
create_table :post_votes do |t|
t.column :post_id, :integer, :null => false
t.column :user_id, :integer, :null => false
t.column :score, :integer, :null => false
t.timestamps
end
add_index :post_votes, :post_id
add_index :post_votes, :user_id
end
def self.down
drop_table :post_votes
end
end