aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--database.sql1
-rw-r--r--update.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/database.sql b/database.sql
index 5ebc8a796..ca21d32fd 100644
--- a/database.sql
+++ b/database.sql
@@ -506,6 +506,7 @@ CREATE TABLE IF NOT EXISTS `ffinder` (
CREATE TABLE IF NOT EXISTS `mailacct` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+`uid` INT NOT NULL,
`server` CHAR( 255 ) NOT NULL ,
`user` CHAR( 255 ) NOT NULL ,
`pass` CHAR( 255 ) NOT NULL ,
diff --git a/update.php b/update.php
index 9a8f87b10..f66b1b9fa 100644
--- a/update.php
+++ b/update.php
@@ -435,6 +435,7 @@ function update_1048() {
function update_1049() {
q("CREATE TABLE `mailacct` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+ `uid` INT NOT NULL,
`server` CHAR( 255 ) NOT NULL ,
`user` CHAR( 255 ) NOT NULL ,
`pass` CHAR( 255 ) NOT NULL ,