diff options
Diffstat (limited to 'import.final.php')
-rw-r--r-- | import.final.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/import.final.php b/import.final.php new file mode 100644 index 0000000..84ec914 --- /dev/null +++ b/import.final.php @@ -0,0 +1,18 @@ +<? + + $verbose = true; + $qa = true; + + require_once 'header.php'; + + // Set those that were gonna be updated to be live + $sql = "UPDATE ebuild SET status = 0 WHERE status = 1;"; + $db->query($sql); + + // Delete the ones flagged for removal +// $sql = "DELETE FROM ebuild WHERE status = 2;"; +// $db->query($sql); + + + +?>
\ No newline at end of file |