Mark various `creator_ip_addr` and `updater_ip_addr` columns as ignored and stop updating them in preparation for dropping them.
8 lines
124 B
Ruby
8 lines
124 B
Ruby
FactoryBot.define do
|
|
factory(:comment) do |f|
|
|
creator
|
|
post
|
|
body {FFaker::Lorem.sentences.join(" ")}
|
|
end
|
|
end
|