This commit was manufactured by cvs2svn to create tag 'v0_9_0'.

git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/v0_9_0@2684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Admin Commit
2004-04-13 04:46:23 +00:00
parent 860f35a7ab
commit a54e196ea4
98 changed files with 1362 additions and 795 deletions

View File

@@ -1,2 +1,11 @@
drop table if exists users;
create table users (mailbox VARCHAR(80) NOT NULL PRIMARY KEY, context VARCHAR(80), password VARCHAR(80), fullname VARCHAR(80), email VARCHAR(80), pager VARCHAR(80), options VARCHAR(160));
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 '',
PRIMARY KEY (context, mailbox)
);