class CreateInvPriceTypes < ActiveRecord::Migration[6.0]
  def change
    create_table :inv_price_types do |t|
      t.string :name
      t.timestamps
    end
  end
end
