ensl.org/db/migrate/20100416014651_add_gather_votes.rb

10 lines
185 B
Ruby

class AddGatherVotes < ActiveRecord::Migration
def self.up
change_table :gathers do |g|
g.integer :votes, :null => false, :default => 0
end
end
def self.down
end
end