lk | adds fixed_at column to bikes

This commit is contained in:
Louis Knapp
2016-07-17 12:25:53 -05:00
parent daa4b912e6
commit 898337a07e
2 changed files with 7 additions and 1 deletions
@@ -0,0 +1,5 @@
class AddFixedAtToBikes < ActiveRecord::Migration
def change
add_column :bikes, :fixed_at, :datetime
end
end