Files
danbooru/db/migrate/20100213183712_create_comment_votes.rb
2011-04-01 19:01:17 -04:00

17 lines
389 B
Ruby

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