impress/db/migrate/20230802195548_drop_wardrobe_tips.rb

18 lines
490 B
Ruby
Raw Normal View History

class DropWardrobeTips < ActiveRecord::Migration[4.2]
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