Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2022-08-02 20:43:13 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-08-02 20:43:13 +0300
commit97c5c01a8764eafa2b4016bf3fee63090b084e97 (patch)
treeb3970a26e6efcfa460e09417480eb7588a7f6728 /libraries/routes.php
parentc9bccf3b3d4ea402e0accd5ae2625fe2b107f81a (diff)
Extract normalization 3NF create new tables action
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/routes.php')
-rw-r--r--libraries/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/routes.php b/libraries/routes.php
index 7fcdfdc00d..fe0cfb7fae 100644
--- a/libraries/routes.php
+++ b/libraries/routes.php
@@ -139,6 +139,7 @@ return static function (RouteCollector $routes): void {
$routes->post('/2nf/create-new-tables', Normalization\SecondNormalForm\CreateNewTablesController::class);
$routes->post('/2nf/new-tables', Normalization\SecondNormalForm\NewTablesController::class);
$routes->post('/2nf/step1', Normalization\SecondNormalForm\FirstStepController::class);
+ $routes->post('/3nf/create-new-tables', Normalization\ThirdNormalForm\CreateNewTablesController::class);
$routes->post('/3nf/new-tables', Normalization\ThirdNormalForm\NewTablesController::class);
$routes->post('/3nf/step1', Normalization\ThirdNormalForm\FirstStepController::class);
});