femslash-city/migrations/074_add_custom_max_space.rb

10 lines
159 B
Ruby
Raw Normal View History

Sequel.migration do
up {
DB.add_column :sites, :custom_max_space, :bigint, default: 0
}
down {
DB.drop_column :sites, :custom_max_space
}
end