Sha256: c8f822f9ff1682445657829d4028f77392cb71cf8a4b3afdaba3f23dc412bb5e

Contents?: true

Size: 403 Bytes

Versions: 3

Compression:

Stored size: 403 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, precision: 6
    end

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

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
spree_purchase_order-3.7.0 spec/dummy/db/migrate/20191113195867_create_spree_promotion_categories.spree.rb
spree_billing_sisow-0.9.2 spec/dummy/db/migrate/20190729091808_create_spree_promotion_categories.spree.rb
spree_billing_sisow-0.9.1 spec/dummy/db/migrate/20190729091808_create_spree_promotion_categories.spree.rb