Sha256: b09e13bc41e9fa00843fe5a465d620bd2403b8d2aaf68b32cd5dabdb321c5c05

Contents?: true

Size: 378 Bytes

Versions: 65

Compression:

Stored size: 378 Bytes

Contents

class DropBillingIntegrations < ActiveRecord::Migration
  def self.up
    drop_table :billing_integrations
  end

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

Version data entries

65 entries across 53 versions & 10 rubygems

Version Path
spree-0.11.0 db/migrate/20100223183812_drop_billing_integrations.rb
spree-0.10.2 db/migrate/20100223183812_drop_billing_integrations.rb
spree-0.10.1 db/migrate/20100223183812_drop_billing_integrations.rb
spree-0.10.0 db/migrate/20100223183812_drop_billing_integrations.rb
spree-0.10.0.beta db/migrate/20100223183812_drop_billing_integrations.rb