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.
12 lines
187 B
Ruby
12 lines
187 B
Ruby
FactoryBot.define do
|
|
factory(:note) do
|
|
post
|
|
x { 1 }
|
|
y { 1 }
|
|
width { 1 }
|
|
height { 1 }
|
|
is_active { true }
|
|
body { FFaker::Lorem.sentences.join(" ") }
|
|
end
|
|
end
|