mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-31 14:03:07 +02:00
field comments.date becomes a datetime MySQL field type (instead of int)
git-svn-id: http://piwigo.org/svn/trunk@420 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -36,7 +36,7 @@ DROP TABLE IF EXISTS phpwebgallery_comments;
|
||||
CREATE TABLE phpwebgallery_comments (
|
||||
id int(11) unsigned NOT NULL auto_increment,
|
||||
image_id mediumint(8) unsigned NOT NULL default '0',
|
||||
date int(11) unsigned NOT NULL default '0',
|
||||
date datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
author varchar(255) default NULL,
|
||||
content longtext,
|
||||
validated enum('true','false') NOT NULL default 'false',
|
||||
|
||||
Reference in New Issue
Block a user