PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of Matthew Asham   Binkterm PHP   database/migrations/v1.11.0.52_file_upload_approval.sql   Download  
File: database/migrations/v1.11.0.52_file_upload_approval.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: 529 bytes
 

Contents

Class file image Download
-- Migration: 1.11.0.52 - File upload approval queue ALTER TABLE files ADD COLUMN IF NOT EXISTS approved_by_user_id INTEGER REFERENCES users(id) ON DELETE SET NULL, ADD COLUMN IF NOT EXISTS approved_at TIMESTAMPTZ NULL, ADD COLUMN IF NOT EXISTS rejected_by_user_id INTEGER REFERENCES users(id) ON DELETE SET NULL, ADD COLUMN IF NOT EXISTS rejected_at TIMESTAMPTZ NULL, ADD COLUMN IF NOT EXISTS rejection_reason TEXT NULL; CREATE INDEX IF NOT EXISTS idx_files_status_created_at ON files(status, created_at);