add antivoters (no behavior yet)

This commit is contained in:
r888888888
2016-09-19 16:47:55 -07:00
parent bf2246f895
commit b2e6a8f031
5 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class CreateAntiVoters < ActiveRecord::Migration
def change
create_table :anti_voters do |t|
t.integer :user_id
t.timestamps null: false
end
end
end