From 78671273fe0bf59d95ca3278f7b9ccf6d92d53d4 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Sun, 10 Sep 2023 13:41:10 +0100 Subject: [PATCH] Deleted old 142 --- .../migrations/142_lotw_users_call_unique.php | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 application/migrations/142_lotw_users_call_unique.php diff --git a/application/migrations/142_lotw_users_call_unique.php b/application/migrations/142_lotw_users_call_unique.php deleted file mode 100644 index 0f561fad..00000000 --- a/application/migrations/142_lotw_users_call_unique.php +++ /dev/null @@ -1,16 +0,0 @@ -db->query("ALTER TABLE lotw_users ADD UNIQUE `callsign_index` (`callsign`);"); - } - - public function down(){ - // Update lotw_users and make the callsign column not unique - $this->db->query("ALTER TABLE lotw_users DROP UNIQUE `callsign_index`;"); - } -}