Database API v2 PHP SDK

Database API v2 PHP SDK

In the documentation there's the following statement (see below)
Is it possible to use our own Database ? with our own table ?
i would like to avoid creating a new database

Database Persistence

In case the user prefers using database persistence, MySQL can be used. The DB persistence mechanism is the default method in PHP SDK.

  • The MySQL should run in the same machine

  • The database name should be zohooauth.

  • There must be a table oauthtokens with columns

    • useridentifier (varchar(100))

    • accesstoken (varchar(100))

    • refreshtoken (varchar(100))

    • expirytime (bigint)