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

12 lines
235 B
Ruby

class CreateTvableTvaRates < ActiveRecord::Migration[6.0]
def change
create_table :tvable_tva_rates do |t|
t.integer :tvable_id
t.string :tvable_type
t.integer :tva_rate_id
t.timestamps
end
end
end