From: Tony Mack Date: Wed, 20 Dec 2006 14:06:40 +0000 (+0000) Subject: - added 'message' column to events table X-Git-Tag: pycurl-7_13_1~180 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c8faf616e1bb4bb0e8480ba26446d071eb83a537;p=plcapi.git - added 'message' column to events table --- diff --git a/planetlab4.sql b/planetlab4.sql index 05c5bae..913da5e 100644 --- a/planetlab4.sql +++ b/planetlab4.sql @@ -9,7 +9,7 @@ -- -- Copyright (C) 2006 The Trustees of Princeton University -- --- $Id: planetlab4.sql,v 1.54 2006/12/15 18:34:46 mlhuang Exp $ +-- $Id: planetlab4.sql,v 1.55 2006/12/15 19:39:04 mlhuang Exp $ -- -------------------------------------------------------------------------------- @@ -696,6 +696,7 @@ CREATE TABLE events ( fault_code integer NOT NULL DEFAULT 0, -- Did this event result in error call_name text Not NULL, -- Call responsible for this event call text NOT NULL, -- Call responsible for this event, including paramters + message text, -- High level description of this event runtime float, -- Event run time time timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP -- Event timestamp ) WITH OIDS;