Sha256: 1747ef173fa5fd6c389a7507a0e7cc7a103499f7bb9e410ffee3a7384e2eea7f

Contents?: true

Size: 389 Bytes

Versions: 6

Compression:

Stored size: 389 Bytes

Contents

# This migration comes from spree (originally 20140715182625)
class CreateSpreePromotionCategories < ActiveRecord::Migration[4.2]
  def change
    create_table :spree_promotion_categories do |t|
      t.string :name
      t.timestamps null: false
    end

    add_column :spree_promotions, :promotion_category_id, :integer
    add_index :spree_promotions, :promotion_category_id
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree_purchase_order-3.6.0 spec/dummy/db/migrate/20180516181996_create_spree_promotion_categories.spree.rb
spree_purchase_order-3.5.0 spec/dummy/db/migrate/20180516181996_create_spree_promotion_categories.spree.rb
spree_purchase_order-3.5.0.rc1 spec/dummy/db/migrate/20180516181996_create_spree_promotion_categories.spree.rb
spree_purchase_order-3.4.0 spec/dummy/db/migrate/20180516181996_create_spree_promotion_categories.spree.rb
spree_purchase_order-3.3.0 spec/dummy/db/migrate/20180516181996_create_spree_promotion_categories.spree.rb
spree_purchase_order-3.2.0 spec/dummy/db/migrate/20180516181996_create_spree_promotion_categories.spree.rb