Difference between revisions of "Database Table: blockwatch events"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'blockwatch_events =Definition= <source lang="sql"> CREATE TABLE blockwatch_events ( id int unsigned NOT NULL auto_increment, name varchar(255) NO...')
 
m (reformat, right category)
Line 1: Line 1:
[[Category: Database Table|blockwatch_events]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE blockwatch_events (
 
CREATE TABLE blockwatch_events (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|blockwatch_events]]

Revision as of 23:28, 25 March 2009

Definition

CREATE TABLE blockwatch_events (
  id INT UNSIGNED NOT NULL AUTO_INCREMENT,
  name VARCHAR(255) NOT NULL,
  PRIMARY KEY (id),
  UNIQUE KEY (name)
)

Relationships

Location

Global database