mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
13 lines
306 B
Ruby
13 lines
306 B
Ruby
class CreateBillingIntegrations < ActiveRecord::Migration
|
|
def change
|
|
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
|