femslash-city/migrations/006_remove_change_marker.rb

9 lines
173 B
Ruby
Raw Permalink Normal View History

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