File: mysql_server_alert.sql

package info (click to toggle)
kalkun 0.8.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,340 kB
  • sloc: php: 30,659; javascript: 30,443; sql: 961; sh: 766; xml: 105; makefile: 41
file content (18 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- --------------------------------------------------------

--
-- Table structure for table `plugin_server_alert`
--

CREATE TABLE IF NOT EXISTS `plugin_server_alert` (
  `id_server_alert` int(11) NOT NULL AUTO_INCREMENT,
  `alert_name` varchar(100) NOT NULL,
  `ip_address` varchar(20) NOT NULL,
  `port_number` int(5) NOT NULL,
  `timeout` int(4) NOT NULL DEFAULT '30',
  `phone_number` varchar(15) NOT NULL,
  `respond_message` varchar(135) NOT NULL,
  `status` enum('true','false') NOT NULL DEFAULT 'true',
  `release_code` varchar(8) NOT NULL,
  PRIMARY KEY (`id_server_alert`)
);