ensl.org/db/migrate/20141010193221_add_status_to_gatherer.rb

5 lines
139 B
Ruby

class AddStatusToGatherer < ActiveRecord::Migration
def change
add_column :gatherers, :status, :int, null: false, default: 0
end
end