[Firebug-cvs] fireboard/beta/bin firebug.sql,1.4,1.5
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2005-06-20 17:58:53
|
Update of /cvsroot/firebug/fireboard/beta/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25475 Modified Files: firebug.sql Log Message: Fixed table names for location_conditions view. Index: firebug.sql =================================================================== RCS file: /cvsroot/firebug/fireboard/beta/bin/firebug.sql,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** firebug.sql 20 Jun 2005 17:50:53 -0000 1.4 --- firebug.sql 20 Jun 2005 17:58:43 -0000 1.5 *************** *** 3,6 **** --- 3,10 ---- -- specific functions. + -- TODO: Make sure the tables are owned by the firebug user. + -- May have to figure out how to switch users on the fly...? + + -- How to check whether table already exists? drop table xbow_weather; create table xbow_weather (result_time timestamp without time zone, *************** *** 51,54 **** --- 55,59 ---- + drop view location_conditions; create view location_conditions as select gga_l.nodeid, latitudedegree, latitudeminutes, longitudedegree, |