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:
parent
e856691c86
commit
359bceb58e
15 changed files with 259 additions and 8 deletions
9
db/migrate/20240823125526_add_details_to_vehicle.rb
Normal file
9
db/migrate/20240823125526_add_details_to_vehicle.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue