source: npl/mailserver/dspam/dspam-3.10.2/src/tools.mysql_drv/virtual_user_aliases.sql

Last change on this file was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 258 bytes
Line 
1# $Id: virtual_user_aliases.sql,v 1.3 2011/05/09 23:01:51 sbajic Exp $
2
3create table dspam_virtual_uids (
4  uid int unsigned not null,
5  username varchar(128) not null
6) engine=MyISAM;
7
8create unique index id_virtual_uids_01 on dspam_virtual_uids(username);
Note: See TracBrowser for help on using the repository browser.