Wrap db:setup with Chewy.strategy(:mastodon) (#24302)

This commit is contained in:
Robert R George 2023-03-29 00:58:27 -07:00 committed by GitHub
parent a766804e02
commit 782669a042
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,7 @@
# frozen_string_literal: true
Dir[Rails.root.join('db', 'seeds', '*.rb')].sort.each do |seed|
load seed
Chewy.strategy(:mastodon) do
Dir[Rails.root.join('db', 'seeds', '*.rb')].sort.each do |seed|
load seed
end
end