Ignore:
Timestamp:
Jan 13, 2011, 4:24:18 PM (13 years ago)
Author:
plg
Message:

feature 2108 added: user upload removed from core. It will come back as a
"new generation" user upload in the Community plugin.

File:
1 edited

Legend:

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

    r8464 r8651  
    3434  "site_id" INTEGER default 1,
    3535  "visible" BOOLEAN default true,
    36   "uploadable" BOOLEAN default false,
    3736  "representative_picture_id" INTEGER,
    3837  "uppercats" TEXT,
     
    653652
    654653CREATE INDEX "comments_i1" ON "piwigo_comments" ("image_id");
    655 
    656 -----------------------------------------------------------------------------
    657 -- piwigo_waiting
    658 -----------------------------------------------------------------------------
    659 
    660 DROP TABLE IF EXISTS "piwigo_waiting" CASCADE;
    661 CREATE TABLE "piwigo_waiting"
    662 (
    663   "id" serial  NOT NULL,
    664   "storage_category_id" INTEGER default 0 NOT NULL,
    665   "file" VARCHAR(255) default '' NOT NULL,
    666   "username" VARCHAR(255) default '' NOT NULL,
    667   "mail_address" VARCHAR(255) default '' NOT NULL,
    668   "date" INTEGER default 0 NOT NULL,
    669   "tn_ext" CHAR(3),
    670   "validated" BOOLEAN default false,
    671   "infos" TEXT,
    672   PRIMARY KEY ("id")
    673 );
    674 
    675 COMMENT ON TABLE "piwigo_waiting" IS '';
    676 
    677 
    678 SET search_path TO public;
Note: See TracChangeset for help on using the changeset viewer.