mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
9 lines
175 B
Ruby
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
|