Files
danbooru/db/migrate/20100215223541_create_post_votes.rb
albert fc0a076aca * Missing files
* Work on post exploration code by traversing dates
2010-10-27 20:16:43 -04:00

15 lines
333 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
end
def self.down
drop_table :post_votes
end
end