search for: reported_by

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

2008 Jul 15
9
Beginner Question.
I''m just getting into RoR, coming from a long PHP background. So far I LOVE IT! I''m hitting a roadblock with updating my mysql database. For simplicities sake, I have 2 tables and here are the relevant columns. Table Users id name email Table Issues id createdby assignedto reportedby In my models I have everything mapped properly I believe. When I try to update the
2006 Mar 27
1
Tests not tiding up after themselves?
...e. 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 foreign key (headline_id) references...