The new installer creates a db/cache_schema.rb file. Running bin/rails db:migrate:cache doesn't load that schema into the database file (as confirmed by checking the output of .tables in the sqlite3 REPL). But, I also can't specify a specific database when calling bin/rails db:schema:load. Neither DATABASE=cache bin/rails db:schema:load nor bin/rails db:schema:load --database=cache nor bin/rails db:schema:load:cache work. And just running bin/rails db:schema:load doesn't work because I am using Solid Queue which presently doesn't create a schema file (even after running migrations; no idea why). So, I get hit with a db/queue_schema.rb doesn't exist yet error.
Re-reading the README, I don't see what my next step should be after running the installer to actually have the cache database include the entries table. Help?
The new installer creates a
db/cache_schema.rb
file. Runningbin/rails db:migrate:cache
doesn't load that schema into the database file (as confirmed by checking the output of.tables
in thesqlite3
REPL). But, I also can't specify a specific database when callingbin/rails db:schema:load
. NeitherDATABASE=cache bin/rails db:schema:load
norbin/rails db:schema:load --database=cache
norbin/rails db:schema:load:cache
work. And just runningbin/rails db:schema:load
doesn't work because I am using Solid Queue which presently doesn't create a schema file (even after running migrations; no idea why). So, I get hit with adb/queue_schema.rb doesn't exist yet
error.Re-reading the README, I don't see what my next step should be after running the installer to actually have the cache database include the entries table. Help?