264ea37e1a
lmao I have zero recollection of this, I've been generally trying to avoid too-far-off-the-path cleanup, but this one just seems silly, goodbye
17 lines
485 B
Ruby
17 lines
485 B
Ruby
class DropWardrobeTips < ActiveRecord::Migration
|
|
def change
|
|
drop_table :wardrobe_tips do |t|
|
|
t.integer "index", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
drop_table :wardrobe_tip_translations do |t|
|
|
t.integer "wardrobe_tip_id"
|
|
t.string "locale"
|
|
t.text "body"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
end
|
|
end
|