Cloudlog/application/models/Dxcc_prefixes.php
Peter Goodhall f5f8243fc2 Revert "Merge branch 'station_logbooks' into master"
This reverts commit 246cec2d66, reversing
changes made to 57f370aa1e.
2021-11-14 11:28:50 +00:00

29 行
633 B
PHP

<?php
class DXCC_Prefixes extends CI_Model {
/*
CREATE TABLE IF NOT EXISTS `dxcc_prefixes` (
`record` int NOT NULL,
`call` varchar(10) NOT NULL,
`entity` varchar(255) NOT NULL,
`adif` smallint NOT NULL,
`cqz` smallint NOT NULL,
`cont` varchar(5),
`long` float,
`lat` float,
PRIMARY KEY (`record`),
KEY `record` (`record`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
*/
function __construct(){
parent::__construct();
}
function empty_table($table){
$this->db->empty_table($table);
}
}