Difference between revisions of "Database Table: schools"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
{{#set:name=schools|clustered=false}}
+
{{#set:name=schools|table type=global}}
 
= Definition =
 
= Definition =
  

Revision as of 18:46, 2 October 2009

Definition

CREATE TABLE `schools` (
  `schoolid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  `name` VARCHAR(200) BINARY NOT NULL DEFAULT '',
  `country` VARCHAR(4) NOT NULL DEFAULT '',
  `state` VARCHAR(100) BINARY DEFAULT NULL,
  `city` VARCHAR(100) BINARY NOT NULL DEFAULT '',
  `url` VARCHAR(255) DEFAULT NULL,
  PRIMARY KEY  (`schoolid`),
  UNIQUE KEY `country` (`country`,`state`,`city`,`name`)
)

Relationships