Ignore:
Timestamp:
Mar 29, 2010, 8:16:33 PM (14 years ago)
Author:
nikrou
Message:

Fix some issues with database engines :

  • insert into syntax not correct for posgresql or sqlite
  • add languages table
  • incorrect function for row count (sqlite)
File:
1 edited

Legend:

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

    r5192 r5452  
    207207
    208208-----------------------------------------------------------------------------
     209-- Table structure for table `piwigo_languages`
     210-----------------------------------------------------------------------------
     211
     212DROP TABLE IF EXISTS piwigo_languages;
     213CREATE TABLE piwigo_languages
     214(
     215  "id" varchar(64) NOT NULL default '',
     216  "version" varchar(64) NOT NULL default '0',
     217  "name" varchar(64) default NULL,
     218  PRIMARY KEY  ("id")
     219);
     220
     221-----------------------------------------------------------------------------
    209222-- piwigo_old_permalinks
    210223-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.