Currently if I set the migration table name to include quoted schema name, like this (PostgreSQL syntax): "\"myschema\".ragtime_migrations" then Ragtime fails to see that the table exists because it will compare this exact string (including the quotes) against the (str table_schem "." table_name) from the DB Metadata (which will not include quotes).
I need to have the name quoted because my schema begins with a number, which otherwise is not legal.
Currently if I set the migration table name to include quoted schema name, like this (PostgreSQL syntax):
"\"myschema\".ragtime_migrations"
then Ragtime fails to see that the table exists because it will compare this exact string (including the quotes) against the(str table_schem "." table_name)
from the DB Metadata (which will not include quotes).I need to have the name quoted because my schema begins with a number, which otherwise is not legal.