Sha256: dd8f36a4084393d207be3d46c5894aea556560a8cd3c91add125721cdba0af2f
Contents?: true
Size: 702 Bytes
Versions: 9
Compression:
Stored size: 702 Bytes
Contents
# This migration comes from spree (originally 20160207191757) class AddIdColumnToEarlierHabtmTables < ActiveRecord::Migration[4.2] def up add_column :spree_option_type_prototypes, :id, :primary_key add_column :spree_option_value_variants, :id, :primary_key add_column :spree_order_promotions, :id, :primary_key add_column :spree_product_promotion_rules, :id, :primary_key add_column :spree_promotion_rule_users, :id, :primary_key add_column :spree_property_prototypes, :id, :primary_key add_column :spree_role_users, :id, :primary_key add_column :spree_shipping_method_zones, :id, :primary_key end def down raise ActiveRecord::IrreversibleMigration end end
Version data entries
9 entries across 9 versions & 2 rubygems