Sha256: 0f6456783c8009037a09f3d81cdbf1b3cd8821cd7c04681c06fae6e1763eb7ff
Contents?: true
Size: 430 Bytes
Versions: 28
Compression:
Stored size: 430 Bytes
Contents
class CreateShippingMethodCategories < ActiveRecord::Migration def change create_table :spree_shipping_method_categories do |t| t.integer :shipping_method_id, :null => false t.integer :shipping_category_id, :null => false t.timestamps null: true end add_index :spree_shipping_method_categories, :shipping_method_id add_index :spree_shipping_method_categories, :shipping_category_id end end
Version data entries
28 entries across 28 versions & 1 rubygems