summaryrefslogtreecommitdiff
path: root/db/update.d/22_shifts.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/update.d/22_shifts.php')
-rw-r--r--db/update.d/22_shifts.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/db/update.d/22_shifts.php b/db/update.d/22_shifts.php
deleted file mode 100644
index 3055c778..00000000
--- a/db/update.d/22_shifts.php
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
-if(sql_num_query("SHOW INDEX FROM `ShiftEntry` WHERE `Key_name` = 'SID' AND `Column_name` = 'TID'") == 0) {
- sql_query("ALTER TABLE `ShiftEntry` DROP INDEX `SID`, ADD INDEX `SID` ( `SID` , `TID` )");
- $applied = true;
-}