neocities/migrations/036_add_editor_theme.rb
2014-08-01 22:37:38 -07:00

9 lines
No EOL
136 B
Ruby

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