fixed colors on graphs
[selectricity-live] / db / migrate / 003_create_quick_voters.rb
1 class CreateQuickVoters < ActiveRecord::Migration
2   def self.up
3     create_table :quick_voters do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :quick_voters
10   end
11 end

Benjamin Mako Hill || Want to submit a patch?