Hello,
I tried to change the migrations table to one using a postgres schema:
{:datastore (jdbc/sql-database (System/getenv "CONN")
{:migrations-table "directory.ragtime_migrations"})
:migrations (jdbc/load-directory "migrations")})
And I get:
Exception in thread "main" org.postgresql.util.PSQLException: ERROR: relation "directory.ragtime_migrations" does not exist
If I change, for example to directory_ragtime_migrations, everything works as expected.
Hello,
I tried to change the migrations table to one using a postgres schema:
{:datastore (jdbc/sql-database (System/getenv "CONN") {:migrations-table "directory.ragtime_migrations"}) :migrations (jdbc/load-directory "migrations")})And I get:
If I change, for example to
directory_ragtime_migrations, everything works as expected.