Difference between revisions of "Database Table: logproplist"

From Dreamwidth Notes
Jump to: navigation, search
m
m (Robot: Changing Category:Database Tables)
Line 1: Line 1:
 
 
= Definition =
 
= Definition =
  
Line 23: Line 22:
 
[[Global database]]
 
[[Global database]]
  
[[Category: Database Tables|logproplist]]
+
[[Category:Database Tables Needing Conversion|logproplist]]

Revision as of 14:03, 2 October 2009

Definition

CREATE TABLE logproplist (
  propid tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT,
  name VARCHAR(50) DEFAULT NULL,
  prettyname VARCHAR(60) DEFAULT NULL,
  sortorder mediumint(8) UNSIGNED DEFAULT NULL,
  datatype enum('char','num','bool') NOT NULL DEFAULT 'char',
  scope enum('general', 'local') NOT NULL DEFAULT 'general',
  ownership ENUM('system', 'user') NOT NULL DEFAULT 'user',
  des VARCHAR(255) DEFAULT NULL,
  PRIMARY KEY  (propid),
  UNIQUE KEY name (name)
)

Relationships

Location

Global database