Sha256: 197584c7940cf94651f4875dbc4c205a5fd35abc0f36b12dd50f1323e1caa421
Contents?: true
Size: 389 Bytes
Versions: 28
Compression:
Stored size: 389 Bytes
Contents
class RemoveSpreeConfigurations < ActiveRecord::Migration 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
28 entries across 28 versions & 1 rubygems