mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-03 12:02:51 +02:00
-First draft of history display
git-svn-id: http://piwigo.org/svn/trunk@537 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -94,12 +94,13 @@ CREATE TABLE phpwebgallery_groups (
|
||||
|
||||
DROP TABLE IF EXISTS phpwebgallery_history;
|
||||
CREATE TABLE phpwebgallery_history (
|
||||
date int(11) NOT NULL default '0',
|
||||
date datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
login varchar(15) default NULL,
|
||||
IP varchar(50) NOT NULL default '',
|
||||
category varchar(150) default NULL,
|
||||
file varchar(50) default NULL,
|
||||
picture varchar(150) default NULL
|
||||
picture varchar(150) default NULL,
|
||||
PRIMARY KEY `date` (`date`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user