File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ Fixed:
4545- demo tracker is always set up on localhost (sf bug 1049101)
4646
4747
48+ 2004-10-?? 0.7.10
49+ Fixed:
50+ - reset ID counters if the database is cleared (thanks William)
51+
52+
48532004-10-?? 0.7.9
4954Feature:
5055- DateHTMLProperty.field() accepts format string (thanks Wil Cooley)
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ Mike Thompson,
139139Martin Uzak,
140140Darryl VanDorp,
141141J Vickroy,
142+ William,
142143Chris Withers.
143144
144145
Original file line number Diff line number Diff line change 1- # $Id: rdbms_common.py,v 1.141 2004-11-25 23:53:31 richard Exp $
1+ # $Id: rdbms_common.py,v 1.142 2004-12-03 22:11:06 richard Exp $
22''' Relational database (SQL) backend common code.
33
44Basics:
@@ -671,6 +671,7 @@ def clear(self):
671671 for cn in self .classes .keys ():
672672 sql = 'delete from _%s' % cn
673673 self .sql (sql )
674+ self .setid (cn , 0 )
674675
675676 #
676677 # Nodes
You can’t perform that action at this time.
0 commit comments