PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of Matthew Asham   Binkterm PHP   database/migrations/v1.11.0.20_filearea_gemini_public.sql   Download  
File: database/migrations/v1.11.0.20_filearea_gemini_public.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Binkterm PHP
Bulletin board system based on the Web
Author: By
Last change:
Date: 5 days ago
Size: 513 bytes
 

Contents

Class file image Download
-- Add gemini_public flag to file_areas, mirroring the same flag on echoareas. -- When true, all approved files in the area are browsable and downloadable -- via the Gemini capsule server. ALTER TABLE file_areas ADD COLUMN gemini_public BOOLEAN NOT NULL DEFAULT FALSE; CREATE INDEX idx_file_areas_gemini_public ON file_areas (gemini_public) WHERE gemini_public = TRUE; COMMENT ON COLUMN file_areas.gemini_public IS 'If true, files in this area are listed and served via the Gemini capsule server';