basic_dem_app/db/migrate/20190902194539_create_tvable_tva_rates.rb
Nicolas Bally 3524d4c862 intial
2020-03-18 15:49:29 +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