make editor theme stick, and get rid of slim

This commit is contained in:
Kyle Drake 2014-08-01 22:37:38 -07:00
parent 7a751e811e
commit 933fb9fcfd
8 changed files with 180 additions and 190 deletions

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :editor_theme, :text
}
down {
DB.drop_column :sites, :editor_theme
}
end