panier_app/db/migrate/20190902194539_create_tvable_tva_rates.rb
Nicolas Bally d744a04b28 initial
2020-10-30 22:26:40 +01: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