olwen_demo_app/db/migrate/20190902090449_create_accounting_zones.rb
Nicolas Bally 7b2e6811dd initial
2020-06-05 11:10:02 +02:00

12 lines
242 B
Ruby

class CreateAccountingZones < ActiveRecord::Migration[6.0]
def change
create_table :accounting_zones do |t|
t.string :name
t.text :description
t.boolean :enabled, :default => true
t.timestamps
end
end
end