PHP Classes

File: SQL File

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

Contents

Class file image Download
-- Add font family and size settings to user_settings table -- v1.3.2 - Font customization support ALTER TABLE user_settings ADD COLUMN IF NOT EXISTS font_family VARCHAR(100) DEFAULT 'Courier New, Monaco, Consolas, monospace'; ALTER TABLE user_settings ADD COLUMN IF NOT EXISTS font_size INTEGER DEFAULT 16; -- Add comment for documentation COMMENT ON COLUMN user_settings.font_family IS 'CSS font-family for message display'; COMMENT ON COLUMN user_settings.font_size IS 'Font size in pixels for message display';