Add delete_all() to sql for testing ONLY :)

This commit is contained in:
Miles Lott 2001-03-25 23:25:23 +00:00
parent a0ec697e28
commit 528db46464

View File

@ -557,6 +557,12 @@
. $this->account_id . "'",__LINE__,__FILE__);
}
// This is for testing, not intended for release
function delete_all()
{
$this->db->query("delete from $this->std_table",__LINE__,__FILE__);
$this->db->query("delete from $this->ext_table",__LINE__,__FILE__);
return;
}
}
?>