aboutsummaryrefslogtreecommitdiff
path: root/docs/call-log.sql
diff options
context:
space:
mode:
Diffstat (limited to 'docs/call-log.sql')
-rw-r--r--docs/call-log.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/call-log.sql b/docs/call-log.sql
new file mode 100644
index 0000000..0b14b07
--- /dev/null
+++ b/docs/call-log.sql
@@ -0,0 +1,14 @@
+CREATE TABLE `finished` (
+ `call_id` int(11) NOT NULL AUTO_INCREMENT,
+ `call_start` datetime NOT NULL,
+ `call_end` datetime NOT NULL,
+ `call_type` varchar(1) NOT NULL,
+ `call_from` varchar(32) DEFAULT NULL,
+ `call_from_name` varchar(32) DEFAULT NULL,
+ `call_from_location` varchar(32) DEFAULT NULL,
+ `call_to` varchar(32) DEFAULT NULL,
+ `call_to_name` varchar(32) DEFAULT NULL,
+ `call_to_location` varchar(32) DEFAULT NULL,
+ `call_length` int(11) NOT NULL,
+ PRIMARY KEY (`call_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='finished calls';