mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
10 lines
305 B
Ruby
10 lines
305 B
Ruby
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
|