Code

change progress column in jobdb from string to integer
authorrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 26 Feb 2008 14:40:17 +0000 (14:40 +0000)
committerrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 26 Feb 2008 14:40:17 +0000 (14:40 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9130 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/gosa-si-server

index f9203baaa1dd9d48ecf0bf3e1fb5e40a6ab2030c..9860dcfc4b7275d1d344e5b5d724b420bc9d7647 100755 (executable)
@@ -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);