mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
17 lines
355 B
Ruby
17 lines
355 B
Ruby
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
|