qi6_app/db/migrate/20190220135017_create_p_compta_elements.rb
2019-05-17 12:30:45 +02:00

14 lines
363 B
Ruby

class CreatePComptaElements < ActiveRecord::Migration[6.0]
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.timestamps null: false
end
end
end