You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can I use a SCHEMA for all tables needed for PHP-Auth?
I created all tables with the prefix phpauth., but the code doesn´t refer to these tables. Instead of, another table named users is referenced. How can I define the SCHEMA, that should be looked up?
The text was updated successfully, but these errors were encountered:
Do you just want to rename all the tables needed for this library to start with a shared prefix, such as phpauth. or phpauth_?
From the README:
Should your database tables for this library need a common prefix, e.g. my_users instead of users (and likewise for the other tables), pass the prefix (e.g. my_) as the third parameter to the constructor, which is named $dbTablePrefix. This is optional and the prefix is empty by default.
Can I use a SCHEMA for all tables needed for PHP-Auth?
I created all tables with the prefix
phpauth.
, but the code doesn´t refer to these tables. Instead of, another table named users is referenced. How can I define the SCHEMA, that should be looked up?The text was updated successfully, but these errors were encountered: