Files
vms/app/models/vehicle.rb
David Böhm 132ea2c51d
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
Added vehicle scaffold
2024-08-20 19:50:29 +02:00

4 lines
102 B
Ruby

class Vehicle < ApplicationRecord
enum vehicle_type: { car: 0, truck: 1, motorcycle: 2, van: 3}
end