From cc72236f71c60396b69631656f8e0ad00a6301c8 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 23 Jul 2014 21:56:01 +0200 Subject: Move migration code to CLI callable function This is necessary to prevent migrations from running multiple times in parallel. A git hook can be used to run this after checkout so impact should be fairly low. Signed-off-by: Florian Pritz --- application/config/routes.php | 1 + 1 file changed, 1 insertion(+) (limited to 'application/config/routes.php') diff --git a/application/config/routes.php b/application/config/routes.php index 3ae891bfd..e0d963405 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -41,6 +41,7 @@ $route['default_controller'] = "file"; $route['user/(:any)'] = "user/$1"; $route['file/(:any)'] = "file/$1"; +$route['tools/(:any)'] = "tools/$1"; $route['(:any)'] = "file/index/$1"; $route['404_override'] = ''; -- cgit v1.2.3-24-g4f1b