bushbaby/zf-oauth2-doctrine-mutatetablenames

Module for Laminas API Tools's Doctrine OAuth2 Server Adapter so table names can be configured

2.0.0 2022-02-20 01:55 UTC

This package is auto-updated.

Last update: 2024-03-20 06:46:06 UTC


README

About

^2.0 This module allows to configure the tables that the OAuth2 Doctrine Adapter for Laminas API Tools generates.

^1.0 This module allows to configure the tables that the Fork OAuth2 Doctrine Adapter for Laminas API Tools generates.

^0.0 This module allows to configure the tables that the OAuth2 Doctrine Adapter for Apigility generates.

Latest Stable Version Total Downloads Latest Unstable Version Coverage Status License

Installation

Installation of this module uses composer. For composer documentation, please refer to getcomposer.org.

$ composer require bushbaby/zf-oauth2-doctrine-mutatetablenames

Add this module to your application's configuration:

'modules' => array(
   ...
   'ZF\OAuth2\Doctrine\MutateTableNames',
),

Configuration

Copy config/oauth2.doctrine-orm.mutatetablenames.global.php.dist to your autoload directory and rename to oauth2.doctrine-orm.mutatetablenames.global.php

Edit the appropriate values to customize table names. This module considers the usage of the configured doctrine event manager.

Migration

You should be able to review the changes with the following command

php public/index.php orm:schema-tool:update --dump-sql

When satisfied run this command to actually modify your database

php public/index.php orm:schema-tool:update --force

Now you should manually copy the relevant information to the new tables. Old tables are not removed unless you specify the '--complete' flag.

WARNING: Will find any difference between the doctrine managed entities and the schema found in the database, not just the ones regarding the table name changes!