kopia lustrzana https://github.com/magicbug/Cloudlog
Added Migscript
rodzic
f5313eca63
commit
40218dc8e1
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
class Migration_add_qrz_down extends CI_Migration
|
||||
{
|
||||
public function up() {
|
||||
if (!$this->db->field_exists('COL_QRZCOM_QSO_DOWNLOAD_STATUS', $this->config->item('table_name'))) {
|
||||
$fields = array(
|
||||
'COL_QRZCOM_QSO_DOWNLOAD_DATE DATETIME NULL DEFAULT NULL',
|
||||
'COL_QRZCOM_QSO_DOWNLOAD_STATUS VARCHAR(10) DEFAULT NULL',
|
||||
);
|
||||
$this->dbforge->add_column($this->config->item('table_name'), $fields, 'COL_VUCC_GRIDS');
|
||||
}
|
||||
}
|
||||
|
||||
public function down() {
|
||||
if ($this->db->field_exists('COL_QRZCOM_QSO_DOWNLOAD_STATUS', $this->config->item('table_name'))) {
|
||||
$this->dbforge->drop_column($this->config->item('table_name'), 'COL_QRZCOM_QSO_DOWNLOAD_STATUS');
|
||||
}
|
||||
if ($this->db->field_exists('COL_QRZCOM_QSO_DOWNLOAD_DATE', $this->config->item('table_name'))) {
|
||||
$this->dbforge->drop_column($this->config->item('table_name'), 'COL_QRZCOM_QSO_DOWNLOAD_DATE');
|
||||
}
|
||||
}
|
||||
}
|
Ładowanie…
Reference in New Issue