Sha256: 95b19844c3445641993fa531946686be23dd72d9ec1e3d338a6cd1f9bf0b2146
Contents?: true
Size: 664 Bytes
Versions: 7
Compression:
Stored size: 664 Bytes
Contents
# This migration comes from spree (originally 20100209025806) class CreatePaymentMethods < ActiveRecord::Migration def change create_table :payment_methods do |t| t.string :type, :name t.text :description t.boolean :active, :default => true t.string :environment, :default => 'development' t.timestamps end # TODO - also migrate any legacy configurations for gateways and billing integrations before dropping the old tables # we probably also need to do this inside the payment_gateway extension b/c table won't exist yet in fresh bootstrap #drop_table :billing_integrations #drop_table :gateways end end
Version data entries
7 entries across 7 versions & 2 rubygems