PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of Matthew Asham   Binkterm PHP   database/migrations/v1.7.6_add_auth_method.sql   Download  
File: database/migrations/v1.7.6_add_auth_method.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: 1 month ago
Size: 451 bytes
 

Contents

Class file image Download
-- Migration: v1.7.6_add_auth_method.sql -- Description: Add authentication method tracking to binkp session log -- Date: 2026-01-25 -- Add auth_method column to track whether session used plain text or CRAM-MD5 ALTER TABLE binkp_session_log ADD COLUMN IF NOT EXISTS auth_method VARCHAR(20) DEFAULT 'plaintext'; -- Add comment for documentation COMMENT ON COLUMN binkp_session_log.auth_method IS 'Authentication method used: plaintext or cram-md5';