Sha256: 6ef0f05c8158e7d1286514408c9d986a386f4cf7061201209a810e8a88961c51
Contents?: true
Size: 376 Bytes
Versions: 7
Compression:
Stored size: 376 Bytes
Contents
class CreateSpreeMenus < ActiveRecord::Migration[5.2] def change create_table :spree_menus do |t| t.column :name, :string t.column :location, :string t.column :locale, :string t.belongs_to :store t.timestamps end add_index :spree_menus, :locale add_index :spree_menus, [:store_id, :location, :locale], unique: true end end
Version data entries
7 entries across 7 versions & 1 rubygems