Sha256: eca46a1387ca1b01a7352e18951af3fa92543b266e2977054cf962a26a99f8ba
Contents?: true
Size: 502 Bytes
Versions: 9
Compression:
Stored size: 502 Bytes
Contents
# This migration comes from spree (originally 20150128060325) class RemoveSpreeConfigurations < ActiveRecord::Migration[4.2] 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
9 entries across 9 versions & 2 rubygems