aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2014-09-20 11:52:45 +0000
committerplegall <plg@piwigo.org>2014-09-20 11:52:45 +0000
commitf98dd758681e4405727bba8a92311170baa1cdde (patch)
tree96c7a1674e193112370fc1783538e740e701c0ef /install
parentb0cc8f1bc2be174105cd71b3d31e7ae3f51ee0c6 (diff)
bug 3141 fixed: forget to change piwigo_structure-mysql.sql in r29111 for feature 3050
git-svn-id: http://piwigo.org/svn/trunk@29666 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install')
-rw-r--r--install/piwigo_structure-mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/piwigo_structure-mysql.sql b/install/piwigo_structure-mysql.sql
index 84b07a3a5..b36844a8f 100644
--- a/install/piwigo_structure-mysql.sql
+++ b/install/piwigo_structure-mysql.sql
@@ -430,7 +430,8 @@ CREATE TABLE `piwigo_user_infos` (
`registration_date` datetime NOT NULL default '0000-00-00 00:00:00',
`enabled_high` enum('true','false') NOT NULL default 'true',
`level` tinyint unsigned NOT NULL default '0',
- `activation_key` char(20) default NULL,
+ `activation_key` varchar(255) default NULL,
+ `activation_key_expire` datetime default NULL,
`lastmodified` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`user_id`),
KEY `lastmodified` (`lastmodified`)