Fixed an exception ath the "ACP-part" of the installation in combination with PostgreSQL
authorRouL <roul@codingcorner.info>
Sat, 16 Jul 2011 12:54:39 +0000 (14:54 +0200)
committerRouL <roul@codingcorner.info>
Sat, 16 Jul 2011 12:54:39 +0000 (14:54 +0200)
wcfsetup/install/files/lib/data/application/Application.class.php

index 2768f1f4b13c8bb4e2b3b5a60804b371f63c555e..bba367733baa630f1d2501096d79c4c1d21a8afc 100644 (file)
@@ -14,12 +14,17 @@ use wcf\data\DatabaseObject;
  */
 class Application extends DatabaseObject {
        /**
-        * @see DatabaseObject::$databaseTableName
+        * @see wcf\data\DatabaseObject::$databaseTableName
         */
        protected static $databaseTableName = 'application';
        
        /**
-        * @see DatabaseObject::$databaseTableIndexName
+        * @see wcf\data\DatabaseObject::$databaseTableIndexName
         */
        protected static $databaseTableIndexName = 'packageID';
+       
+       /**
+        * @see wcf\data\DatabaseObject::$databaseTableIndexIsIdentity
+        */
+       protected static $databaseTableIndexIsIdentity = false;
 }