Removed obsolete column
authorMarcel Werk <burntime@woltlab.com>
Tue, 4 Sep 2012 16:04:45 +0000 (18:04 +0200)
committerMarcel Werk <burntime@woltlab.com>
Tue, 4 Sep 2012 16:04:45 +0000 (18:04 +0200)
wcfsetup/install/files/lib/system/session/SessionHandler.class.php
wcfsetup/setup/db/install.sql

index 55a8ac1a009cc3793f53dd05f23618233ad2da1c..d0ffda71b45c5d48cdfdaff185b856648f7e75af 100644 (file)
@@ -344,7 +344,6 @@ class SessionHandler extends SingletonFactory {
                        'sessionID' => $sessionID,
                        'packageID' => PACKAGE_ID,
                        'userID' => $this->user->userID,
-                       'username' => ($this->user->username === null) ? '' : $this->user->username,
                        'ipAddress' => UserUtil::getIpAddress(),
                        'userAgent' => UserUtil::getUserAgent(),
                        'lastActivityTime' => TIME_NOW,
@@ -483,8 +482,7 @@ class SessionHandler extends SingletonFactory {
                        // update session
                        $sessionEditor = new $this->sessionEditorClassName($this->session);
                        $sessionEditor->update(array(
-                               'userID' => $this->user->userID,
-                               'username' => $this->user->username
+                               'userID' => $this->user->userID
                        ));
                }
                
index 6996da4c4840c6e926b3d3067f643564eba6f342..f1a9980636695725f0656eb7d3b7ab7ad88b4cca 100644 (file)
@@ -37,7 +37,6 @@ CREATE TABLE wcf1_acp_session (
        parentObjectID INT(10) NOT NULL DEFAULT 0,
        objectType VARCHAR(255) NOT NULL DEFAULT '',
        objectID INT(10) NOT NULL DEFAULT 0,
-       username VARCHAR(255) NOT NULL DEFAULT '',
        sessionVariables MEDIUMTEXT,
        KEY sessionID (sessionID, packageID)
 );
@@ -534,7 +533,6 @@ CREATE TABLE wcf1_session (
        parentObjectID INT(10) NOT NULL DEFAULT 0,
        objectType VARCHAR(255) NOT NULL DEFAULT '',
        objectID INT(10) NOT NULL DEFAULT 0,
-       username VARCHAR(255) NOT NULL DEFAULT '',
        sessionVariables MEDIUMTEXT,
        spiderID INT(10) NOT NULL DEFAULT 0,
        KEY packageID (packageID, lastActivityTime, spiderID)