femslash-city/migrations/036_add_editor_theme.rb

9 lines
136 B
Ruby
Raw Normal View History

Sequel.migration do
up {
DB.add_column :sites, :editor_theme, :text
}
down {
DB.drop_column :sites, :editor_theme
}
end