diff options
author | plegall <plg@piwigo.org> | 2011-01-13 15:24:18 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-01-13 15:24:18 +0000 |
commit | fe569ab1bf4baa44a808a2d6e81bcddc28d61b62 (patch) | |
tree | d24dd5bb2db62ce6e8c5143412d549469fc33176 /install/piwigo_structure-pgsql.sql | |
parent | f03dcee21a4c5ef3b790de15decddff6c6c23b35 (diff) |
feature 2108 added: user upload removed from core. It will come back as a
"new generation" user upload in the Community plugin.
git-svn-id: http://piwigo.org/svn/trunk@8651 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/piwigo_structure-pgsql.sql')
-rw-r--r-- | install/piwigo_structure-pgsql.sql | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/install/piwigo_structure-pgsql.sql b/install/piwigo_structure-pgsql.sql index 5f9d5a8cf..feab9acc3 100644 --- a/install/piwigo_structure-pgsql.sql +++ b/install/piwigo_structure-pgsql.sql @@ -33,7 +33,6 @@ CREATE TABLE "piwigo_categories" "status" CATEGORIES_STATUS default 'public'::CATEGORIES_STATUS, "site_id" INTEGER default 1, "visible" BOOLEAN default true, - "uploadable" BOOLEAN default false, "representative_picture_id" INTEGER, "uppercats" TEXT, "commentable" BOOLEAN default true, @@ -652,27 +651,3 @@ SET search_path TO public; CREATE INDEX "comments_i2" ON "piwigo_comments" ("validation_date"); CREATE INDEX "comments_i1" ON "piwigo_comments" ("image_id"); - ------------------------------------------------------------------------------ --- piwigo_waiting ------------------------------------------------------------------------------ - -DROP TABLE IF EXISTS "piwigo_waiting" CASCADE; -CREATE TABLE "piwigo_waiting" -( - "id" serial NOT NULL, - "storage_category_id" INTEGER default 0 NOT NULL, - "file" VARCHAR(255) default '' NOT NULL, - "username" VARCHAR(255) default '' NOT NULL, - "mail_address" VARCHAR(255) default '' NOT NULL, - "date" INTEGER default 0 NOT NULL, - "tn_ext" CHAR(3), - "validated" BOOLEAN default false, - "infos" TEXT, - PRIMARY KEY ("id") -); - -COMMENT ON TABLE "piwigo_waiting" IS ''; - - -SET search_path TO public;
\ No newline at end of file |