Displaying 1 result from an estimated 1 matches for "fk_article_headline".
2006 Mar 27
1
Tests not tiding up after themselves?
...not null,
happened_at timestamp not null,
reported_by varchar(40) not null,
-- An id that identifies the revision to the reporter
rid varchar(40) not null,
primary key (id)
);
create table articles (
id int not null auto_increment,
headline_id int not null,
description text,
constraint fk_article_headline foreign key (headline_id) references
headlines(id),
primary key (id)
);
create table changes (
id int not null auto_increment,
article_id int not null,
summary text not null,
diff text,
constraint fk_change_article foreign key (article_id) references articles(id),
primary key (id)
);
----
T...