impress/db/migrate/20230802195548_drop_wardrobe_tips.rb
Matchu 264ea37e1a Delete WardrobeTip model
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
2023-08-02 13:05:30 -07:00

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