mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 04:46:29 +00:00
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/branches/1.4@51167 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)
|
|
);
|