mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-02 15:51:08 +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
|