search for: headline_id

Displaying 1 result from an estimated 1 matches for "headline_id".

2006 Mar 27
1
Tests not tiding up after themselves?
...rement, author varchar(40) not null, title varchar(100) 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 (...