Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mysql.sql « _sql « cachecore « lib « aws-sdk « 3rdparty - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2efee3a732f95f2b9e259058d3894b4b123d42a7 (plain)
1
2
3
4
5
6
7
CREATE TABLE `cache` (
  `id` char(40) NOT NULL default '',
  `expires` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `data` longtext,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8