Sha256: 3272d67d03cb74a848ff195ef57081605df50658f790211941fbf6417d75f276
Contents?: true
Size: 435 Bytes
Versions: 34
Compression:
Stored size: 435 Bytes
Contents
class RemoveSpreeConfigurations < ActiveRecord::Migration def up drop_table "spree_configurations" end def down create_table "spree_configurations", force: true do |t| t.string "name" t.string "type", limit: 50 t.datetime "created_at" t.datetime "updated_at" end add_index "spree_configurations", ["name", "type"], name: "index_spree_configurations_on_name_and_type" end end
Version data entries
34 entries across 34 versions & 1 rubygems