mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 01:12:29 +02:00
Fix some sql issues :
- permalink that use if() syntax - add tables themes for other database engines that mysql git-svn-id: http://piwigo.org/svn/trunk@5192 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -414,6 +414,21 @@ COMMENT ON TABLE "piwigo_tags" IS '';
|
||||
SET search_path TO public;
|
||||
CREATE INDEX "tags_i1" ON "piwigo_tags" ("url_name");
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- piwigo_themes
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS "piwigo_themes" CASCADE;
|
||||
CREATE TABLE "piwigo_themes"
|
||||
(
|
||||
"id" varchar(64) default '' NOT NULL,
|
||||
"version" varchar(64) NOT NULL default '0',
|
||||
"name" varchar(64) default NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
COMMENT ON TABLE "piwigo_themes" IS '';
|
||||
|
||||
-----------------------------------------------------------------------------
|
||||
-- piwigo_upgrade
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user