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-sqlite.sql

    r5123 r5192  
    342342
    343343-----------------------------------------------------------------------------
     344-- piwigo_themes
     345-----------------------------------------------------------------------------
     346
     347DROP TABLE IF EXISTS "piwigo_themes" CASCADE;
     348CREATE TABLE "piwigo_themes"
     349(
     350  "id" varchar(64) default '' NOT NULL,
     351  "version" varchar(64) NOT NULL default '0',
     352  "name" varchar(64) default NULL,
     353  PRIMARY KEY  ("id")
     354);
     355
     356-----------------------------------------------------------------------------
    344357-- piwigo_upgrade
    345358-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.