coton_app/db/migrate/20190320135017_create_p_compta_elements.rb
2019-06-27 19:48:14 +02:00

15 lines
400 B
Ruby

class CreatePComptaElements < ActiveRecord::Migration
def change
create_table :p_compta_elements do |t|
t.string :element_type
t.integer :element_id
t.references :p_customer, index: true, foreign_key: true
t.datetime :date
t.decimal :amount, :precision => 13, :scale => 2
t.boolean :solde, :default => false
t.timestamps null: false
end
end
end