femslash-city/migrations/130_more_editor_settings.rb

9 lines
171 B
Ruby
Raw Normal View History

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