Sha256: 4d5ff7daae511e0dcca36644f67bbd22fefd31a051c1af9a88fe1e2f677aa4ea
Contents?: true
Size: 355 Bytes
Versions: 35
Compression:
Stored size: 355 Bytes
Contents
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
35 entries across 35 versions & 3 rubygems