[Firebug-cvs] fireboard/beta/bin LinkEstimatorMsg.pgsql,NONE,1.1 SurgeMsg.pgsql,NONE,1.1 firebug-db-
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2005-08-08 17:37:26
|
Update of /cvsroot/firebug/fireboard/beta/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv313 Modified Files: firebug-db-setup.sh Added Files: LinkEstimatorMsg.pgsql SurgeMsg.pgsql Log Message: Table for multihop link estimation. --- NEW FILE: SurgeMsg.pgsql --- /** * This class is automatically generated by mig. DO NOT EDIT THIS FILE. * This code provides postgres table to the 'SurgeMsgP' * message type. */ CREATE TABLE SurgeMsgP ( result_time timestamp without time zone, type integer, reading integer, parentaddr integer, seq_no integer); --- NEW FILE: LinkEstimatorMsg.pgsql --- /** * This class is automatically generated by mig. DO NOT EDIT THIS FILE. * This code provides postgres table to the 'LinkEstimatorMsgP' * message type. */ CREATE TABLE LinkEstimatorMsgP ( result_time timestamp without time zone, seqno integer, source integer, dest integer, RSSI integer, LQI integer, source_seqno integer); Index: firebug-db-setup.sh =================================================================== RCS file: /cvsroot/firebug/fireboard/beta/bin/firebug-db-setup.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** firebug-db-setup.sh 30 Jul 2005 03:15:37 -0000 1.5 --- firebug-db-setup.sh 8 Aug 2005 17:37:18 -0000 1.6 *************** *** 56,59 **** --- 56,61 ---- psql --echo-queries --dbname firebug firebug < sirf_functions.pgsql; psql --echo-queries --dbname firebug firebug < linkmsg.pgsql; + psql --echo-queries --dbname firebug firebug < LinkEstimatorMsg.pgsql; + psql --echo-queries --dbname firebug firebug < SurgeMsg.pgsql; |