]> git.quilime.com - clmpr.git/commitdiff
Removed local database migration script
authorGabriel Dunne <gdunne@quilime.com>
Mon, 26 Dec 2011 22:53:00 +0000 (14:53 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Mon, 26 Dec 2011 22:53:00 +0000 (14:53 -0800)
admin/_migrate.php [deleted file]

diff --git a/admin/_migrate.php b/admin/_migrate.php
deleted file mode 100644 (file)
index 87c99a1..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-include '../init.php';
-
-$dbh = get_db_connection();
-$dbh->beginTransaction();
-
-$q = $dbh->prepare("SELECT *, clumps.id as clump_id
-                    FROM clumps
-                    JOIN users
-                        ON users.id = clumps.user_id
-                    ORDER BY date DESC");
-$q->execute();
-
-$clumps = array();
-for($i = 0; $row = $q->fetch(); $i++ ):
-       $clumps[] = $row;
-endfor;
-
-foreach($clumps as $clump) :
-       #update tags
-       $tags = str_replace(" ", ',', $clump['tags']);
-    # update clump
-       $update = $dbh->prepare("UPDATE `clumps` SET `tags` = '".$tags."' WHERE `id` = '".$clump['clump_id']."'");
-       $update->execute();
-endforeach;
-
-exit;
-
-$dbh = null;
-$q = null;