implement super voters

This commit is contained in:
r888888888
2016-02-22 14:02:52 -08:00
parent caf4a28b02
commit 2a87aad34e
13 changed files with 189 additions and 12 deletions

View File

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