mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
77 lines
1.9 KiB
PHP
77 lines
1.9 KiB
PHP
<?php
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
class Migration_add_hams_of_note extends CI_Migration
|
|
{
|
|
public function up() {
|
|
if (!$this->db->table_exists('hams_of_note')) {
|
|
$this->dbforge->add_field(array(
|
|
'id' => array(
|
|
'type' => 'INT',
|
|
'constraint' => 20,
|
|
'unsigned' => TRUE,
|
|
'auto_increment' => TRUE,
|
|
'unique' => TRUE
|
|
),
|
|
'callsign' => array(
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 32,
|
|
'unsigned' => TRUE,
|
|
),
|
|
'description' => array(
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 256,
|
|
'unsigned' => TRUE,
|
|
),
|
|
'linkname' => array(
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 256,
|
|
'unsigned' => TRUE,
|
|
'null' => TRUE,
|
|
'default' => '',
|
|
),
|
|
'link' => array(
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 256,
|
|
'unsigned' => TRUE,
|
|
'null' => TRUE,
|
|
'default' => '',
|
|
),
|
|
));
|
|
$this->dbforge->add_key('id', TRUE);
|
|
$this->dbforge->create_table('hams_of_note');
|
|
$this->db->query("ALTER TABLE hams_of_note ADD INDEX `callsign` (`callsign`)");
|
|
}
|
|
|
|
if ($this->chk4cron('update_update_hon') == 0) {
|
|
$data = array(
|
|
array(
|
|
'id' => 'update_update_hamsofnote',
|
|
'enabled' => '0',
|
|
'status' => 'disabled',
|
|
'description' => 'Update Hams Of Notes',
|
|
'function' => 'index.php/update/update_hamsofnote',
|
|
'expression' => '45 4 * * *',
|
|
'last_run' => null,
|
|
'next_run' => null
|
|
));
|
|
$this->db->insert_batch('cron', $data);
|
|
}
|
|
}
|
|
|
|
public function down() {
|
|
if ($this->chk4cron('update_update_hamsofnote') > 0) {
|
|
$this->db->query("delete from cron where id='update_update_hamsofnote'");
|
|
}
|
|
if ($this->db->table_exists('hams_of_note')) {
|
|
$this->dbforge->drop_table('hams_of_note');
|
|
}
|
|
}
|
|
|
|
function chk4cron($cronkey) {
|
|
$query = $this->db->query("select count(id) as cid from cron where id=?",$cronkey);
|
|
$row = $query->row();
|
|
return $row->cid ?? 0;
|
|
}
|
|
}
|