neocities/migrations/074_add_custom_max_space.rb
2015-08-21 14:42:05 -07:00

9 lines
159 B
Ruby

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