Sha256: eb12559bfe9776ab84dc52aa31d5a7893e0ca9dc73dcb41cfd6410c6ff20333d
Contents?: true
Size: 394 Bytes
Versions: 7
Compression:
Stored size: 394 Bytes
Contents
@adidas = Brand.create!(name: "Adidas") @shoe = ProductCategory.create!(name: "Shoe") @tee = ProductCategory.create!(name: "T-shirt") Product.create!( brand_id: @adidas.id, category_id: @shoe.id, name: "Gazelle OG" ) Product.create!( brand_id: @adidas.id, category_id: @shoe.id, name: "Hamburg" ) Product.create!( brand_id: @adidas.id, category_id: @tee.id, name: "Hamburg" )
Version data entries
7 entries across 7 versions & 2 rubygems