From 0e97468f7d6bf444f7e464b7111a2710d66cfc64 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Fri, 27 Mar 2026 15:48:07 -0400 Subject: [PATCH] upd: install update migration commands to use entities instead of migration scripts --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.php b/install.php index afbcba0..4525336 100755 --- a/install.php +++ b/install.php @@ -7,10 +7,10 @@ shell_exec("COMPOSE_ALLOW_SUPERUSER=1 composer update"); //`symfony console asset-map:compile"); print "Creating database schema".PHP_EOL; -shell_exec("symfony console doctrine:database:create"); +shell_exec("symfony console doctrine:database:create --if-not-exists"); print "Updating migrations and setting permissions for data folder".PHP_EOL; -shell_exec("symfony console doctrine:migrations:migrate --no-interaction"); +shell_exec("symfony console doctrine:schema:create"); shell_exec("chown -R www-data:www-data /data");