Merge pull request #2556 from dg0tm/dev

[migrations] remove duplicate file
pull/2557/head
Peter Goodhall 2023-10-09 11:21:34 +01:00 zatwierdzone przez GitHub
commit 5a1c76c6c3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 0 dodań i 22 usunięć

Wyświetl plik

@ -1,22 +0,0 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_dxcc_enddate extends CI_Migration {
public function up()
{
$fields = array(
'end_date' => array('type' => 'datetime')
);
$this->dbforge->add_column('dxcc', $fields);
}
public function down()
{
$this->dbforge->drop_column('dxcc', 'end_date');
}
}
?>