Ignore:
Timestamp:
Mar 19, 2010, 8:39:15 PM (14 years ago)
Author:
nikrou
Message:

Fix some sql issues :

  • permalink that use if() syntax
  • add tables themes for other database engines that mysql
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/piwigo_structure-pgsql.sql

    r5123 r5192  
    416416
    417417-----------------------------------------------------------------------------
     418-- piwigo_themes
     419-----------------------------------------------------------------------------
     420
     421DROP TABLE IF EXISTS "piwigo_themes" CASCADE;
     422CREATE TABLE "piwigo_themes"
     423(
     424  "id" varchar(64) default '' NOT NULL,
     425  "version" varchar(64) NOT NULL default '0',
     426  "name" varchar(64) default NULL,
     427  PRIMARY KEY  ("id")
     428);
     429
     430COMMENT ON TABLE "piwigo_themes" IS '';
     431
     432-----------------------------------------------------------------------------
    418433-- piwigo_upgrade
    419434-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.