Sha256: ab3c8e3ac7817d2c5a2c8e3ded89bef015d79ff9f9e843055a3417b09608ccf7
Contents?: true
Size: 383 Bytes
Versions: 11
Compression:
Stored size: 383 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
11 entries across 11 versions & 1 rubygems