Files
danbooru/test/factories/comment.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

8 lines
124 B
Ruby

FactoryBot.define do
factory(:comment) do |f|
creator
post
body {FFaker::Lorem.sentences.join(" ")}
end
end