From: rettenbe Date: Tue, 26 Feb 2008 14:40:17 +0000 (+0000) Subject: change progress column in jobdb from string to integer X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7e8dc5687f8e539ba172ca704d73e251b19b3bfb;p=gosa.git change progress column in jobdb from string to integer git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9130 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server index f9203baaa..9860dcfc4 100755 --- a/gosa-si/gosa-si-server +++ b/gosa-si/gosa-si-server @@ -1158,7 +1158,7 @@ if ($no_bus > 0) { #unlink('/tmp/gosa_si_lock*'); # connect to gosa-si job queue -my @job_col_names = ("id INTEGER", "timestamp", "status", "result", "progress", "headertag", "targettag", "xmlmessage", "macaddress"); +my @job_col_names = ("id INTEGER", "timestamp", "status", "result", "progress INTEGER", "headertag", "targettag", "xmlmessage", "macaddress"); $job_db = GOSA::DBsqlite->new($job_queue_file_name); $job_db->create_table('jobs', \@job_col_names);