From: rettenbe Date: Mon, 11 Feb 2008 10:55:54 +0000 (+0000) Subject: id column in known_server_db is integer now X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a148e4210b81060e9746431f23fdf9532fba188c;p=gosa.git id column in known_server_db is integer now git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8823 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server index d14b5baa7..39fe6f815 100755 --- a/gosa-si/gosa-si-server +++ b/gosa-si/gosa-si-server @@ -1112,7 +1112,7 @@ daemon_log("$0 started!", 1); system('rm -f /tmp/gosa_si_lock*gosa-si-server*'); # connect to gosa-si job queue -my @job_col_names = ("id", "timestamp", "status", "result", "headertag", "targettag", "xmlmessage", "macaddress"); +my @job_col_names = ("id INTEGER", "timestamp", "status", "result", "headertag", "targettag", "xmlmessage", "macaddress"); $job_db = GOSA::DBsqlite->new($job_queue_file_name); $job_db->create_table('jobs', \@job_col_names);