This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/00055_create_s_compta_accounts.rb
2021-08-23 10:26:02 +02:00

17 lines
376 B
Ruby

class CreateSComptaAccounts < ActiveRecord::Migration[6.0]
def change
create_table :s_compta_accounts do |t|
t.string :code
t.string :name
t.string :i_account
t.string :i_sale_account
t.string :i_account_ps
t.string :zone
t.string :purchase_account
t.string :sale_account
t.timestamps null: false
end
end
end