Files
openfoodnetwork/db/migrate/20120327000561_create_billing_integrations.rb
Andrew Spinks cd1938a74e spree install.
2012-03-27 11:06:49 +11:00

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