Changeset d36701a for npl/mailserver/dspam/initdb.sql
- Timestamp:
- 06/13/18 16:04:12 (7 years ago)
- Branches:
- gcc484, master, perl-5.22
- Children:
- 28afc38
- Parents:
- 20eb816
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/mailserver/dspam/initdb.sql
r20eb816 rd36701a 9 9 innocent_hits int not null, 10 10 last_hit date not null 11 ) type=MyISAM PACK_KEYS=1;11 ) ENGINE=MyISAM PACK_KEYS=1; 12 12 13 13 create unique index id_token_data_01 on dspam_token_data(uid,token); … … 19 19 length smallint not null, 20 20 created_on date not null 21 ) type=MyISAM max_rows=2500000 avg_row_length=8096;21 ) ENGINE=MyISAM max_rows=2500000 avg_row_length=8096; 22 22 23 23 create unique index id_signature_data_01 on dspam_signature_data(uid,signature); … … 34 34 spam_classified int not null, 35 35 innocent_classified int not null 36 ) type=MyISAM;36 ) ENGINE=MyISAM; 37 37 38 38 create table dspam_preferences ( … … 40 40 preference varchar(32) not null, 41 41 value varchar(64) not null 42 ) type=MyISAM;42 ) ENGINE=MyISAM; 43 43 44 44 create unique index id_preferences_01 on dspam_preferences(uid, preference); … … 49 49 uid smallint unsigned primary key AUTO_INCREMENT, 50 50 username varchar(128) 51 ) type=MyISAM;51 ) ENGINE=MyISAM; 52 52 53 53 create unique index id_virtual_uids_01 on dspam_virtual_uids(username);
Note: See TracChangeset
for help on using the changeset viewer.