|
From: Chris W. <la...@us...> - 2001-10-15 04:24:18
|
Update of /cvsroot/openinteract/SPOPS/eg In directory usw-pr-cvs1:/tmp/cvs-serv27695 Added Files: users_groups_clear.sql users_groups_clear_pgsql.sql Log Message: added SQL to clear out our sample tables, including the sequences for Pg --- NEW FILE: users_groups_clear.sql --- DROP TABLE spops_user; DROP TABLE spops_group; DROP TABLE spops_group_user; DROP TABLE spops_security; DROP TABLE spops_doodad; --- NEW FILE: users_groups_clear_pgsql.sql --- DROP SEQUENCE spops_group_group_id_seq; DROP SEQUENCE spops_security_sid_seq; DROP SEQUENCE spops_user_user_id_seq; DROP SEQUENCE spops_doodad_doodad_id_seq; |