mirror of
https://github.com/fspc/bike-database.git
synced 2025-12-18 08:55:35 -05:00
6 lines
116 B
Ruby
6 lines
116 B
Ruby
class AddTimeSpentToBikes < ActiveRecord::Migration
|
|
def change
|
|
add_column :bikes, :time_spent, :int
|
|
end
|
|
end
|