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