mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-02-21 19:41:16 +00:00
10 lines
185 B
Ruby
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
|