mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +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
|