Activity log for bug #721762

Date Who What changed Old value New value Message
2011-02-19 13:11:06 Ronnie bug added bug
2011-02-19 13:11:54 Ronnie loco-directory: importance Undecided High
2011-02-19 13:45:06 Ronnie description The production database is different from the code in django These difference i could find: Production CREATE TABLE teams ( ... provides_support boolean DEFAULT true NOT NULL, approved boolean DEFAULT false NOT NULL, approved_date date, expires_date date, ... ); Mine CREATE TABLE teams ( ... provides_support boolean NOT NULL, approved boolean NOT NULL, approved_date timestamp with time zone, expires_date timestamp with time zone, ... ); The production database is different from the code in django These difference i could find: Mine CREATE TABLE teams (     ...     provides_support boolean DEFAULT true NOT NULL,     approved boolean DEFAULT false NOT NULL,     approved_date date,     expires_date date,     ... ); Production CREATE TABLE teams (     ...     provides_support boolean NOT NULL,     approved boolean NOT NULL,     approved_date timestamp with time zone,     expires_date timestamp with time zone,     ... );
2011-03-03 00:57:49 Chris Johnston loco-directory: status New Confirmed