X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=assistants%2Fmigrations.inc.php;h=dd7b436d1ecec8afd2ee0f6586a38a2383370d96;hb=0f5f15490aaefd530fc6ac935dfa627d3889ba1c;hp=c492ecb4e936b3975a5e9e3f4890300b70df5bf5;hpb=f7740b1c92b980d3529043d2e49798f5e0cc919f;p=mirrors%2FSokoMan.git diff --git a/assistants/migrations.inc.php b/assistants/migrations.inc.php index c492ecb..dd7b436 100644 --- a/assistants/migrations.inc.php +++ b/assistants/migrations.inc.php @@ -1,6 +1,13 @@
+

-- populate barcode table

db->safe_query_fetch('SELECT model_id as id, model_barcode as bar FROM model;', false); +//print_r($data); +echo("UPDATE item SET barcode_id=model_id;\n"); +echo("INSERT INTO barcode (barcode_id,model_id,barcode_name) VALUES\n"); +foreach($data as $line) echo("('".$line['id']."','".$line['id']."',".$this->db->quote($line['bar'])."),\n"); +?>

-- populate columns item_date_bought and item_date_sold

db->safe_query_fetch('SELECT item_id,MIN(item_valid_from) AS min,MAX(item_valid_from) AS max FROM item GROUP BY item_id;'); +$data = $this->db->safe_query_fetch('SELECT item_id,MIN(item_valid_from) AS min,MAX(item_valid_from) AS max FROM item GROUP BY item_id;', false); //print_r($data); echo("START TRANSACTION;\n"); foreach($data as $line) echo("UPDATE item SET item_date_bought='".$line['min']."',item_date_sold='".$line['max']."' WHERE item_id=".$line['item_id'].";\n");