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