From 2f214d18b8bf502e1967945b56be57435a989b38 Mon Sep 17 00:00:00 2001 From: Quitta Date: Fri, 5 Jul 2013 23:00:19 +0200 Subject: [PATCH] Add some default categories --- code/ryzom/tools/server/ryzom_ams/www/html/sql/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/tools/server/ryzom_ams/www/html/sql/install.php b/code/ryzom/tools/server/ryzom_ams/www/html/sql/install.php index 0f64a4924..a20bdc20a 100644 --- a/code/ryzom/tools/server/ryzom_ams/www/html/sql/install.php +++ b/code/ryzom/tools/server/ryzom_ams/www/html/sql/install.php @@ -57,6 +57,7 @@ UNIQUE INDEX `Name_UNIQUE` (`Name` ASC) ) ENGINE = InnoDB; + INSERT IGNORE INTO `" . $cfg['db']['lib']['name'] ."`.`ticket_category` (`Name`) VALUES ('Hacking'),('Ingame-Bug'),('Website-Bug'),('Installation'); -- ----------------------------------------------------- -- Table `" . $cfg['db']['lib']['name'] ."`.`ticket_user` @@ -243,7 +244,6 @@ ENGINE = InnoDB; - "; $dbl->executeWithoutParams($sql); print "The Lib & Web database were correctly installed!
";