Sha256: 0a7025f20a4e1cc6d40e0bc6058dfa3989ca651d1bdbb622d6de8d5014517ccc

Contents?: true

Size: 417 Bytes

Versions: 7

Compression:

Stored size: 417 Bytes

Contents

# This migration comes from spree (originally 20100223183812)
class DropBillingIntegrations < ActiveRecord::Migration
  def up
    drop_table :billing_integrations
  end

  def down
    create_table :billing_integrations do |t|
      t.string :type, :name
      t.text :description
      t.boolean :active, :default => true
      t.string :environment, :default => 'development'

      t.timestamps
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
spree_mercado_pago_payment_method-0.0.2 spec/dummy/db/migrate/20121121030172_drop_billing_integrations.spree.rb
spree_mercado_pago_payment_method-0.1.1 spec/dummy/db/migrate/20121121030172_drop_billing_integrations.spree.rb
spree_mercado_pago_payment_method-0.1.0 spec/dummy/db/migrate/20121121030172_drop_billing_integrations.spree.rb
datashift_spree-0.3.0 spec/sandbox/db/migrate/20121023154391_drop_billing_integrations.spree.rb
datashift_spree-0.2.1 spec/sandbox/db/migrate/20121015151184_drop_billing_integrations.spree.rb
datashift_spree-0.2.0 spec/sandbox/db/migrate/20120925192752_drop_billing_integrations.spree.rb
datashift_spree-0.1.0 spec/sandbox/db/migrate/20120918081483_drop_billing_integrations.spree.rb