Skip to content

Commit 6476a32

Browse files
author
Richard Jones
committed
sqlite migration drops some journal information (thanks David Linke)
1 parent 9213bd0 commit 6476a32

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2004-??-?? 0.7.0
5+
Fixed:
6+
- sqlite migration drops some journal information (thanks David Linke)
7+
8+
49
2004-04-18 0.7.0b3
510
Feature:
611
- added a favicon

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ Axel Kollmorgen,
9797
Detlef Lannert,
9898
Andrey Lebedev,
9999
Henrik Levkowetz,
100+
David Linke,
100101
Fredrik Lundh,
101102
Gordon McMillan,
102103
John F Meinel Jr,

roundup/backends/back_sqlite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: back_sqlite.py,v 1.25 2004-04-18 05:31:02 richard Exp $
1+
# $Id: back_sqlite.py,v 1.26 2004-04-18 23:05:18 richard Exp $
22
'''Implements a backend for SQLite.
33
44
See https://pysqlite.sourceforge.net/ for pysqlite info
@@ -200,7 +200,7 @@ def update_class(self, spec, old_spec, force=0, adding_v2=0):
200200
self.create_class_table(spec)
201201

202202
if olddata:
203-
inscols = []
203+
inscols = ['_actor', '_activity', '_creation', '_creator']
204204
for propname,x in new_spec[1]:
205205
prop = properties[propname]
206206
if isinstance(prop, hyperdb.Multilink):

0 commit comments

Comments
 (0)