From 798da7f0a729c4c2d790b276e46b816bd53c8d47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 28 Jul 2015 21:56:56 +0200 Subject: Add generator identifier to configuration in database This identifier is for recognition what generator generated specified configuration as first. --- scripts/database.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/database.py') diff --git a/scripts/database.py b/scripts/database.py index 3db66fe..16556a8 100644 --- a/scripts/database.py +++ b/scripts/database.py @@ -78,17 +78,17 @@ class database: ps(ds, cm) return self.check_linuxgit() - def add_configuration(self, hash, cfile): + def add_configuration(self, hash, cfile, generator): "Add configuration to database." ps = self.db.prepare("""INSERT INTO configurations - (hash, cfile, gtime, toolgit, linuxgit) + (hash, cfile, gtime, toolgit, linuxgit, generator) VALUES - ($1, $2, $3, $4, $5); + ($1, $2, $3, $4, $5, $6); """) gt = self.check_toolsgit() lgt = self.check_linuxgit() tm = datetime.datetime.now() - ps(hash, cfile, tm, gt, lgt) + ps(hash, cfile, tm, gt, lgt, generator) def get_configration(self, hash): "Return configration id for inserted hash." -- cgit v1.2.3