Sha256: e9427d341ebd9686a53dc9ed8e3cc4f1d604b55b1cb906cb3d757ce035eac573

Contents?: true

Size: 594 Bytes

Versions: 2

Compression:

Stored size: 594 Bytes

Contents

# This migration comes from spree (originally 20150825204216)
class DropSpreeGateways < ActiveRecord::Migration
  def up
    drop_table :spree_gateways
  end

  def down
    create_table "spree_gateways" do |t|
      t.string   "type"
      t.string   "name"
      t.text     "description"
      t.boolean  "active",      default: true
      t.string   "environment", default: "development"
      t.string   "server",      default: "test"
      t.boolean  "test_mode",   default: true
      t.datetime "created_at"
      t.datetime "updated_at"
      t.text     "preferences"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_order_reporting-0.0.2 spec/dummy/db/migrate/20160707103618_drop_spree_gateways.spree.rb
spree_order_reporting-0.0.1 spec/dummy/db/migrate/20160706112570_drop_spree_gateways.spree.rb