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/20210421152942_create_p_commercial_object_months.rb
2021-08-23 10:26:02 +02:00

14 lines
364 B
Ruby

class CreatePCommercialObjectMonths < ActiveRecord::Migration[6.0]
def change
create_table :p_commercial_object_months do |t|
t.references :p_commercial, foreign_key: true
t.references :p_commercial_objectives, foreign_key: true
t.date :start_at
t.date :end_at
t.decimal :objective_percent
t.timestamps
end
end
end