1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/db/migrate/20121205040829_create_bike_styles.rb
2012-12-04 23:36:50 -05:00

9 lines
175 B
Ruby

class CreateBikeStyles < ActiveRecord::Migration
def change
create_table :bike_styles do |t|
t.string "style", :null => false
t.timestamps
end
end
end