1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-12 22:38:21 +02:00
neocities/migrations/020_add_plan_ended.rb

9 lines
No EOL
152 B
Ruby

Sequel.migration do
up {
DB.add_column :sites, :plan_ended, :boolean, default: false
}
down {
DB.drop_column :sites, :plan_ended
}
end