mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	the eyes (bug 1208) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2492 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			12 lines
		
	
	
		
			347 B
		
	
	
	
		
			SQL
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			347 B
		
	
	
	
		
			SQL
		
	
	
		
			Executable File
		
	
	
	
	
| 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 '',
 | |
| PRIMARY KEY (context, mailbox)
 | |
| );
 |