Update the load-prod-db-in-dev script to handle migrations

This is obviously not a good fix, but it gets the job done. Permanent
fix will be researched at https://fizzy.37signals.com/5986089/cards/545
This commit is contained in:
Mike Dalessio
2025-10-07 02:42:53 -04:00
parent 7ed5d31512
commit 6f43fa3b2b
+27 -14
View File
@@ -6,31 +6,44 @@ if ARGV.length != 1
end
original_dbfile = ARGV[0]
require "securerandom"
identifier = SecureRandom.hex(4)
# run a process to run the migration and dump the schema cache
Process.fork do
require_relative "../config/environment"
unless Rails.env.local?
abort "This script should only be run in a local development environment."
end
tenant = ActiveRecord::FixtureSet.identify(identifier)
path = ApplicationRecord.tenanted_root_config.database_path_for(tenant)
FileUtils.mkdir_p(File.dirname(path), verbose: true)
FileUtils.cp original_dbfile, path, verbose: true
ActiveRecord::Tenanted::DatabaseTasks.migrate_all
end
Process.wait
# now load the schema cache and do what we need to do in the database
require_relative "../config/environment"
unless Rails.env.local?
abort "This script should only be run in a local development environment."
end
identifier = SecureRandom.hex(4)
tenant = ActiveRecord::FixtureSet.identify(identifier)
path = ApplicationRecord.tenanted_root_config.database_path_for(tenant)
FileUtils.mkdir_p(File.dirname(path), verbose: true)
FileUtils.cp original_dbfile, path, verbose: true
ActiveRecord::Tenanted::DatabaseTasks.migrate_all
ApplicationRecord.with_tenant(tenant) do |tenant|
Account.sole.destroy!
Account.create_with_admin_user \
account: { name: "Company #{identifier}" },
owner: { name: "Developer #{identifier}", email_address: "dev-#{identifier}@example.com" }
owner: { name: "Developer #{identifier}", email_address: "dev-#{identifier}@example.com", password: "secret123456" }
user = User.last
user.update! password: "secret123456"
Collection.find_each do |collection|
collection.accesses.grant_to(user)
end
url = Rails.application.routes.url_helpers.root_url(Rails.application.config.action_controller.default_url_options.merge(script_name: Account.sole.slug))
puts "\n\nLogin to #{url} as #{user.email_address} / #{user.password}"
puts "\n\nLogin to #{url} as #{user.email_address} / secret123456"
end