Rename is_active to is_deleted. This is for better consistency with other models, and to reduce confusion over what "active" means for artists. Sometimes users think active is for whether the artist is actively producing work.
7 lines
112 B
Ruby
7 lines
112 B
Ruby
FactoryBot.define do
|
|
factory(:artist) do
|
|
name { rand(1_000_000).to_s }
|
|
is_deleted { false }
|
|
end
|
|
end
|