Files
danbooru/test/factories/dmail.rb
evazion d4da8499ce models: stop saving IP addresses in version tables.
Mark various `creator_ip_addr` and `updater_ip_addr` columns as ignored
and stop updating them in preparation for dropping them.
2022-09-18 03:49:17 -05:00

10 lines
210 B
Ruby

FactoryBot.define do
factory(:dmail) do
owner factory: :user
from factory: :user
to factory: :user
title {FFaker::Lorem.words.join(" ")}
body {FFaker::Lorem.sentences.join(" ")}
end
end