mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 05:21:19 +00:00
6 lines
139 B
Ruby
6 lines
139 B
Ruby
|
class AddStatusToGatherer < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :gatherers, :status, :int, null: false, default: 0
|
||
|
end
|
||
|
end
|