Remove the creator_id field from artists, notes, and pools. The creator_id wasn't otherwise used and was inconsistent with the artist/note/pool history in some cases, especially for old artists.
7 lines
148 B
Ruby
7 lines
148 B
Ruby
FactoryBot.define do
|
|
factory(:pool) do
|
|
name {"pool_" + rand(100..1000099).to_s}
|
|
description {FFaker::Lorem.sentences.join(" ")}
|
|
end
|
|
end
|