mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
-Update some migrations to match source schema, will need to add timestamps back eventually
9 lines
160 B
Ruby
9 lines
160 B
Ruby
class CreateBikeBrands < ActiveRecord::Migration
|
|
def change
|
|
create_table :bike_brands do |t|
|
|
t.string "brand"
|
|
#t.timestamps
|
|
end
|
|
end
|
|
end
|