From 04dae8d94f846fe5b82d9261405cbc56a736ded3 Mon Sep 17 00:00:00 2001 From: Callan Barrett Date: Wed, 26 Mar 2008 22:52:15 +0900 Subject: Remove references to AURMaintainerUID This (should) get rid of anything to do with the unused column AURMaintainerUID in the scripts and schema files Signed-off-by: Callan Barrett Signed-off-by: Simo Leone --- support/schema/gendummydata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'support/schema/gendummydata.py') diff --git a/support/schema/gendummydata.py b/support/schema/gendummydata.py index 94f037c..dabd451 100755 --- a/support/schema/gendummydata.py +++ b/support/schema/gendummydata.py @@ -249,8 +249,8 @@ for p in seen_pkgs.keys(): uuid = genUID() # the submitter/user - s = "INSERT INTO Packages (ID, Name, Version, CategoryID, LocationID, SubmittedTS, SubmitterUID, MaintainerUID, AURMaintainerUID) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d);\n" % (seen_pkgs[p], p, genVersion(location_id), - genCategory(), location_id, NOW, uuid, muid, muid) + s = "INSERT INTO Packages (ID, Name, Version, CategoryID, LocationID, SubmittedTS, SubmitterUID, MaintainerUID) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d);\n" % (seen_pkgs[p], p, genVersion(location_id), + genCategory(), location_id, NOW, uuid, muid) out.write(s) if count % 100 == 0: if DBUG: print ".", -- cgit v1.2.3-54-g00ecf