mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
fixed migration not using drop column
This commit is contained in:
parent
811b956a4b
commit
ebc81be9ca
1 changed files with 4 additions and 4 deletions
|
@ -7,10 +7,10 @@ Sequel.migration do
|
||||||
}
|
}
|
||||||
|
|
||||||
down {
|
down {
|
||||||
DB.add_column :sites, :autocomplete_enabled
|
DB.drop_column :sites, :autocomplete_enabled
|
||||||
DB.add_column :sites, :editor_font_size
|
DB.drop_column :sites, :editor_font_size
|
||||||
DB.add_column :sites, :keyboard_mode
|
DB.drop_column :sites, :keyboard_mode
|
||||||
DB.add_column :sites, :tab_width
|
DB.drop_column :sites, :tab_width
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue