1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 23:59:40 +02:00

Vehicle view (#1117)

This commit is contained in:
Zach Gollwitzer 2024-08-23 09:33:42 -04:00 committed by GitHub
parent e856691c86
commit 359bceb58e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 259 additions and 8 deletions

View file

@ -0,0 +1,9 @@
class AddDetailsToVehicle < ActiveRecord::Migration[7.2]
def change
add_column :vehicles, :year, :integer
add_column :vehicles, :mileage_value, :integer
add_column :vehicles, :mileage_unit, :string
add_column :vehicles, :make, :string
add_column :vehicles, :model, :string
end
end