Files
danbooru/db/migrate/20160919234407_create_anti_voters.rb
2016-09-19 16:47:55 -07:00

9 lines
173 B
Ruby

class CreateAntiVoters < ActiveRecord::Migration
def change
create_table :anti_voters do |t|
t.integer :user_id
t.timestamps null: false
end
end
end