A colleague (recently left) has installed Laravel Passport on a site I'm now working on, which uses SQL Server, with the various oauth_ tables created in the default dbo schema.
However, our database has a number of schemas, depending on the purpose of the tables, including 'security' which has all the tables relating to auth stuff.
I've been asked to make changes so the tables are in security not dbo, but I can't figure out how to achieve this. In the passport model files there's just a table name specified, and the migrations generated also seem to have no option for specifying a schema. I couldn't see anything in the Passport docs to indicate whether it's possible either.
Does anyone know if it's possible to have passport use tables in the non-default schema?