1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00
bike-database/db/migrate/20170713233459_add_time_spent_to_bikes.rb
2017-07-13 18:44:58 -05:00

6 lines
116 B
Ruby

class AddTimeSpentToBikes < ActiveRecord::Migration
def change
add_column :bikes, :time_spent, :int
end
end