search for: happened_at

Displaying 2 results from an estimated 2 matches for "happened_at".

Did you mean: 5bhappened_at
2006 Mar 23
7
Fixtures just Do Not Work for Me
...I have been struggling to get fixtures to work here with no success. They just Do Not Work For Me (tm). I have created a model named Headline with the `generate'' script and modified the test/fixtumes/headlines.yml as follows ---------- gita: id: 1 author: raulseixas title: gita happened_at: 2005-01-01 00:00:00 description: gita This is the CD reissue of the 1974 album and second solo release by Raul Seixas, an important figure of Brazilian rock. Acid critic of establishment, he pardodies several figures of Brazilian showb...
2006 Mar 27
1
Tests not tiding up after themselves?
...foreign key to the headlines table. My schema structure is created by this script ---- drop table if exists changes; drop table if exists articles; drop table if exists headlines; create table headlines ( id int not null auto_increment, 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 for...