1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/db/migrate/20121205024701_create_bike_statuses.rb

9 lines
180 B
Ruby
Raw Normal View History

2012-12-04 21:53:05 -05:00
class CreateBikeStatuses < ActiveRecord::Migration
def change
create_table :bike_statuses do |t|
2012-12-04 23:36:50 -05:00
t.string "status", :null => false
2012-12-04 21:53:05 -05:00
t.timestamps
end
end
end