projects
/
GitHub
/
WoltLab
/
WCF.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
827e7ae
)
Added missing auto increment
author
Alexander Ebert
<ebert@woltlab.com>
Sat, 19 Apr 2014 17:14:24 +0000
(19:14 +0200)
committer
Alexander Ebert
<ebert@woltlab.com>
Sat, 19 Apr 2014 17:14:24 +0000
(19:14 +0200)
wcfsetup/setup/db/install.sql
patch
|
blob
|
blame
|
history
diff --git
a/wcfsetup/setup/db/install.sql
b/wcfsetup/setup/db/install.sql
index b47f1cd7c619d6e9de316f8c9eb0646af5113748..47e554c8caa23d5f01d4636ffd5cc2a6fa7a71c2 100644
(file)
--- a/
wcfsetup/setup/db/install.sql
+++ b/
wcfsetup/setup/db/install.sql
@@
-814,7
+814,7
@@
CREATE TABLE wcf1_session (
DROP TABLE IF EXISTS wcf1_session_virtual;
CREATE TABLE wcf1_session_virtual (
- virtualSessionID INT(10) NOT NULL PRIMARY KEY,
+ virtualSessionID INT(10) NOT NULL
AUTO_INCREMENT
PRIMARY KEY,
sessionID CHAR(40) NOT NULL,
ipAddress VARCHAR(39) NOT NULL DEFAULT '',
userAgent VARCHAR(255) NOT NULL DEFAULT '',