|
Revision 3217, 379 bytes
(checked in by gregmac, 7 years ago)
|
Added a check to not page devices that are in use, as well as option to override. Dropped old paging_config table, and re-purposed it.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
CREATE TABLE IF NOT EXISTS paging_overview ( config VARCHAR(50) , detail VARCHAR(25)); |
|---|
| 2 |
CREATE TABLE IF NOT EXISTS paging_groups ( page_number VARCHAR(50) , ext VARCHAR(25)); |
|---|
| 3 |
CREATE TABLE IF NOT EXISTS paging_config ( page_group VARCHAR(50), force_page INTEGER(1) NOT NULL); |
|---|
| 4 |
CREATE TABLE IF NOT EXISTS paging_phones ( phone_name VARCHAR(50), priority INT, command VARCHAR(50)); |
|---|