diff options
author | nikrou <nikrou@piwigo.org> | 2010-05-12 20:59:54 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-05-12 20:59:54 +0000 |
commit | 3f982e844351fa0eaa2d52242ded60956988ef4d (patch) | |
tree | f232260a7a5fb2d9891a1f237fe3e88e5fb46327 /install/piwigo_structure-sqlite.sql | |
parent | 45eee83ef7f25e14d733aabd72e1f52f5e9640d3 (diff) |
SQLite cannot drop tables on cascade
git-svn-id: http://piwigo.org/svn/trunk@6166 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/piwigo_structure-sqlite.sql')
-rw-r--r-- | install/piwigo_structure-sqlite.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/piwigo_structure-sqlite.sql b/install/piwigo_structure-sqlite.sql index 6b48218c8..ac90d3e9f 100644 --- a/install/piwigo_structure-sqlite.sql +++ b/install/piwigo_structure-sqlite.sql @@ -357,7 +357,7 @@ CREATE INDEX "tags_i1" ON "piwigo_tags" ("url_name"); -- piwigo_themes ----------------------------------------------------------------------------- -DROP TABLE IF EXISTS "piwigo_themes" CASCADE; +DROP TABLE IF EXISTS "piwigo_themes"; CREATE TABLE "piwigo_themes" ( "id" varchar(64) default '' NOT NULL, |