Sha256: 38b37087510977e95c59ed20f781512c69ed34114caf9ea2771dde560f995cbf
Contents?: true
Size: 569 Bytes
Versions: 21
Compression:
Stored size: 569 Bytes
Contents
class DropUnusedPromoActionLineItems < ActiveRecord::Migration[5.2] def change drop_table :spree_promotion_action_line_items, force: :cascade do |t| t.integer "promotion_action_id" t.integer "variant_id" t.integer "quantity", default: 1 t.datetime "created_at", precision: 6 t.datetime "updated_at", precision: 6 t.index ["promotion_action_id"], name: "index_spree_promotion_action_line_items_on_promotion_action_id" t.index ["variant_id"], name: "index_spree_promotion_action_line_items_on_variant_id" end end end
Version data entries
21 entries across 21 versions & 1 rubygems