| 1 |
CREATE TABLE linksComments ( |
|---|
| 2 |
ID int(11) NOT NULL auto_increment, |
|---|
| 3 |
submitter varchar(16) default NULL, |
|---|
| 4 |
comment text, |
|---|
| 5 |
isPrivate tinyint(4) default NULL, |
|---|
| 6 |
PRIMARY KEY (ID), |
|---|
| 7 |
UNIQUE KEY ID (ID) |
|---|
| 8 |
) TYPE=MyISAM; |
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
INSERT INTO linksComments VALUES (3,'jm3','danceable+tracks',NULL); |
|---|
| 15 |
INSERT INTO linksComments VALUES (5,'rands','This+guys+are+taking+on+Outlook%2FExchange',NULL); |
|---|
| 16 |
INSERT INTO linksComments VALUES (6,'jm3','buick+startup',NULL); |
|---|
| 17 |
INSERT INTO linksComments VALUES (7,'gus','very+cool+hyper-card-looking+flash',NULL); |
|---|
| 18 |
INSERT INTO linksComments VALUES (8,'gus','really+funny+joe+frank+show',NULL); |
|---|
| 19 |
INSERT INTO linksComments VALUES (9,'kingkongdoyle','train+wreck+meet+stoner+from+LA',NULL); |
|---|
| 20 |
INSERT INTO linksComments VALUES (10,'kidsleep','%22iron+online%22',NULL); |
|---|
| 21 |
INSERT INTO linksComments VALUES (11,'kidsleep','%22the+myth%22',NULL); |
|---|
| 22 |
INSERT INTO linksComments VALUES (12,'kidsleep','%22anti+doping%22',NULL); |
|---|
| 23 |
INSERT INTO linksComments VALUES (13,'kidsleep','%22team+flex%22',NULL); |
|---|
| 24 |
INSERT INTO linksComments VALUES (15,'bvl','peter+merholz%27s+blog',NULL); |
|---|
| 25 |
INSERT INTO linksComments VALUES (16,'bvl','jason+kottke%27s+blog',NULL); |
|---|
| 26 |
INSERT INTO linksComments VALUES (18,'kidsleep','%22hey+dude%2C+can+i+get+a+drink+of+your+water%3F%22',NULL); |
|---|
| 27 |
INSERT INTO linksComments VALUES (22,'kidsleep','little+computer',NULL); |
|---|
| 28 |
INSERT INTO linksComments VALUES (23,'kidsleep','just+when+you+thought+it+couldn%27t+get+any+better',NULL); |
|---|
| 29 |
INSERT INTO linksComments VALUES (24,'ZahirahVega','nice+encyclopedia',NULL); |
|---|
| 30 |
INSERT INTO linksComments VALUES (25,'ZahirahVega','Wood',NULL); |
|---|
| 31 |
INSERT INTO linksComments VALUES (26,'pheezy','amen.',NULL); |
|---|
| 32 |
INSERT INTO linksComments VALUES (27,'kidsleep','patriotic+posters',NULL); |
|---|
| 33 |
INSERT INTO linksComments VALUES (28,'kidsleep','nerd+rap+%2F+python+patrol',NULL); |
|---|
| 34 |
INSERT INTO linksComments VALUES (29,'kidsleep','%22The+only+time+AutoCad+was+used+on+this+project+was+to+layout+the+steel+legs...%22',NULL); |
|---|
| 35 |
INSERT INTO linksComments VALUES (30,'kidsleep','%22a+force+not+to+be+screwed+with%22',NULL); |
|---|
| 36 |
|
|---|