basic_app/db/migrate/20190902194539_create_tvable_tva_rates.rb
Nicolas Bally fd027c16c1 initial
2020-04-21 21:53:16 +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