Sha256: b796bc62fe6ced9ca45c8361e851ff78ddf66daf67cb23d2a73259cd3ff3a906
Contents?: true
Size: 388 Bytes
Versions: 21
Compression:
Stored size: 388 Bytes
Contents
class RemoveSpreeConfigurations < ActiveRecord::Migration[4.2] def up drop_table :spree_configurations end def down create_table :spree_configurations do |t| t.string :name t.string :type, limit: 50 t.timestamps null: true end add_index :spree_configurations, [:name, :type], name: 'index_spree_configurations_on_name_and_type' end end
Version data entries
21 entries across 21 versions & 1 rubygems