Sha256: de79c9bbcc1f0382b9a4daa00d299409935cd31e18d3692071c04654145ddcf0
Contents?: true
Size: 537 Bytes
Versions: 21
Compression:
Stored size: 537 Bytes
Contents
class DropSpreeGateways < ActiveRecord::Migration[4.2] 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
21 entries across 21 versions & 1 rubygems