Sha256: 90dcc73fc2e26b17b72a9187a0f1306ab5708fefc3c24550c9d2efb999086ec6

Contents?: true

Size: 371 Bytes

Versions: 4

Compression:

Stored size: 371 Bytes

Contents

# This migration comes from spree_promo (originally 20110601202923)
class CreatePromotionActionLineItems < ActiveRecord::Migration
  def change
    create_table :promotion_action_line_items do |t|
      t.integer :promotion_action_id, :variant_id
      t.integer :quantity, :default => 1
      t.references :promotion_action
      t.references :variant
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
datashift_spree-0.3.0 spec/sandbox/db/migrate/20121023154477_create_promotion_action_line_items.spree_promo.rb
datashift_spree-0.2.1 spec/sandbox/db/migrate/20121015151270_create_promotion_action_line_items.spree_promo.rb
datashift_spree-0.2.0 spec/sandbox/db/migrate/20120925192838_create_promotion_action_line_items.spree_promo.rb
datashift_spree-0.1.0 spec/sandbox/db/migrate/20120918081569_create_promotion_action_line_items.spree_promo.rb