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

Benjamin Mako Hill || Want to submit a patch?