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
110 B
Ruby
7 lines
110 B
Ruby
FactoryBot.define do
|
|
factory(:artist) do
|
|
name { rand(1_000_000).to_s }
|
|
is_active { true }
|
|
end
|
|
end
|