Files
danbooru/db/migrate/20160919234407_create_anti_voters.rb

9 lines
178 B
Ruby

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