Sha256: 6ab37b900fdcfd8d07ec00578d4cb7adc71c12f33616b4bda9a4e50cc4247d75
Contents?: true
Size: 419 Bytes
Versions: 71
Compression:
Stored size: 419 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 end add_index :spree_shipping_method_categories, :shipping_method_id add_index :spree_shipping_method_categories, :shipping_category_id end end
Version data entries
71 entries across 71 versions & 1 rubygems