Sha256: 28fb2c23995d32321dc00941cda61a57cc82bea16e4600918f21c09f3012a1ea
Contents?: true
Size: 308 Bytes
Versions: 10
Compression:
Stored size: 308 Bytes
Contents
class CreatePromotionActionLineItems < ActiveRecord::Migration def self.up create_table "promotion_action_line_items" do |t| t.integer :promotion_action_id, :variant_id t.integer :quantity, :default => 1 end end def self.down drop_table "promotion_action_line_items" end end
Version data entries
10 entries across 10 versions & 1 rubygems