Added support for voting in QuickVotes.
[selectricity] / db / migrate / 002_create_full_voters.rb
diff --git a/db/migrate/002_create_full_voters.rb b/db/migrate/002_create_full_voters.rb
new file mode 100644 (file)
index 0000000..692a81d
--- /dev/null
@@ -0,0 +1,11 @@
+class CreateFullVoters < ActiveRecord::Migration
+  def self.up
+    create_table :full_voters do |t|
+      # t.column :name, :string
+    end
+  end
+
+  def self.down
+    drop_table :full_voters
+  end
+end

Benjamin Mako Hill || Want to submit a patch?