mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 18:24:25 +00:00
8 lines
322 B
SQL
8 lines
322 B
SQL
CREATE TABLE IF NOT EXISTS `cat` (
|
|
`id` int(11) NOT NULL auto_increment,
|
|
`radio` varchar(250) NOT NULL,
|
|
`frequency` int(11) NOT NULL,
|
|
`mode` varchar(10) NOT NULL,
|
|
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ; |