1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00
bike-database/db/migrate/20160717165815_add_fixed_at_to_bikes.rb
2016-07-17 12:25:53 -05:00

6 lines
117 B
Ruby

class AddFixedAtToBikes < ActiveRecord::Migration
def change
add_column :bikes, :fixed_at, :datetime
end
end