mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r51167 | qwell | 2007-01-16 16:50:19 -0600 (Tue, 16 Jan 2007) | 6 lines Fix an issue with IMAP storage and realtime voicemail. Also update the vmdb sql script for IMAP specific options. Issue 8819, initial patches by bsmithurst (slightly modified by me) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@51168 65c4cc65-6c06-0410-ace0-fbb531ad65f3
14 lines
421 B
SQL
14 lines
421 B
SQL
drop table if exists users;
|
|
create table users (
|
|
context VARCHAR(80) NOT NULL,
|
|
mailbox VARCHAR(80) NOT NULL,
|
|
password VARCHAR(80) NOT NULL DEFAULT '',
|
|
fullname VARCHAR(80) NOT NULL DEFAULT '',
|
|
email VARCHAR(80) NOT NULL DEFAULT '',
|
|
pager VARCHAR(80) NOT NULL DEFAULT '',
|
|
options VARCHAR(160) NOT NULL DEFAULT '',
|
|
imapuser VARCHAR(80) DEFAULT NULL,
|
|
imappassword VARCHAR(80) DEFAULT NULL,
|
|
PRIMARY KEY (context, mailbox)
|
|
);
|