Deleted old 142

pull/2474/head
Peter Goodhall 2023-09-10 13:41:10 +01:00
rodzic e45ca7c138
commit 78671273fe
1 zmienionych plików z 0 dodań i 16 usunięć

Wyświetl plik

@ -1,16 +0,0 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_lotw_users_call_unique extends CI_Migration {
public function up() {
// Update lotw_users and make the callsign column unique
$this->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`;");
}
}