Changed properties to remove unecessary exectables.
[selectricity-live] / db / migrate / 002_create_full_voters.rb
1 class CreateFullVoters < ActiveRecord::Migration
2   def self.up
3     create_table :full_voters do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :full_voters
10   end
11 end

Benjamin Mako Hill || Want to submit a patch?