femslash-city/migrations/006_remove_change_marker.rb
Agnes 596fd85f2f
Some checks failed
CI / test (push) Has been cancelled
accidentally leaked secrets so had to nuke shit fuck
2026-08-19 17:29:54 -04:00

9 lines
No EOL
173 B
Ruby

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