Variety of small changes (mostly to properties) plus a few "in the
[selectricity-live] / db / migrate / 001_create_quick_votes.rb
1 class CreateQuickVotes < ActiveRecord::Migration
2   def self.up
3     create_table :quick_votes do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :quick_votes
10   end
11 end

Benjamin Mako Hill || Want to submit a patch?