Sha256: ecf680d8314e3f25c1595598dc85a70460e7c376d199f8a19c3caa973daa7c57
Contents?: true
Size: 1.13 KB
Versions: 5
Compression:
Stored size: 1.13 KB
Contents
# Copyright 2023 Google LLC # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. require_relative "../../config/environment.rb" require_relative "../models/singer" require_relative "../models/album" first_names = %w[Pete Alice John Ethel Trudy Naomi Wendy Ruben Thomas Elly] last_names = %w[Wendelson Allison Peterson Johnson Henderson Ericsson Aronson Tennet Courtou] adjectives = %w[daily happy blue generous cooked bad open] nouns = %w[windows potatoes bank street tree glass bottle] # Note: We do not use mutations to insert these rows, because letting the database generate the primary key means that # we rely on a `THEN RETURN id` clause in the insert statement. This is only supported for DML statements, and not for # mutations. ActiveRecord::Base.transaction do singers = [] 5.times do singers << Singer.create(first_name: first_names.sample, last_name: last_names.sample) end albums = [] 20.times do singer = singers.sample albums << Album.create(title: "#{adjectives.sample} #{nouns.sample}", singer: singer) end end
Version data entries
5 entries across 5 versions & 1 rubygems