Difference between revisions of "Database Table: blockwatch events"
From Dreamwidth Notes
(Created page with 'blockwatch_events =Definition= <source lang="sql"> CREATE TABLE blockwatch_events ( id int unsigned NOT NULL auto_increment, name varchar(255) NO...') |
Foxfirefey (Talk | contribs) m (reformat, right category) |
||
Line 1: | Line 1: | ||
− | + | = 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 = | ||
− | |||
[[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) )