Ignore:
Timestamp:
06/13/18 16:04:12 (7 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
gcc484, master, perl-5.22
Children:
28afc38
Parents:
20eb816
Message:

fix myisam syntax for initial db creation with newer mysql versions

Location:
npl/mailserver/dspam
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • npl/mailserver/dspam/dspam.build

    r20eb816 rd36701a  
    1 6540
     16541
  • npl/mailserver/dspam/dspam.md5

    r20eb816 rd36701a  
    387387d48b067b991ae2012862d109d21ebda3  ./dspam_clean.cron
    388388582b859928225701665e9bb8a1e897eb  ./dspam.conf
    389 cb736215da817654490524f9a1b3947a  ./dspam.pkg
     3897b1e0e00192de8bfc02758d9338b6942  ./dspam.pkg
    3903900ac2b4b6380f0f6ebb937bfdc15f33c0  ./dspam.SlackBuild
    391 2dc712f32aa37def29df79c8bf746857  ./dspam.SlackBuild.log.gz
    392 c9badd49fcf25a18fab35b7e2fd7d8af  ./dspam_webui.pkg
     39155425d5814ba9c4bfef258554b2a79ac  ./dspam.SlackBuild.log.gz
     392801607ddf4293972af2610436546c2d0  ./dspam_webui.pkg
    393393d2aabf5ebfac3a5995171b98ac23845f  ./global.sql.gz
    394394f648885d1dac1916b6d9cc88536db3c7  ./group
    395395b3b686e10af71dd4c928b9d62c547f9e  ./htaccess
    396 f65b1fabc27074a9ef31d57431e08e96  ./initdb.sql
     3969434b7a4713793dcc8d5dc458f3042a5  ./initdb.sql
    39739795cbc61d450e2904be264cb11d94431a  ./post.dspam
    3983981b2edfe1130eec64752c7fd65cde1a42  ./run
  • npl/mailserver/dspam/dspam_webui.build

    r20eb816 rd36701a  
    1 6540
     16541
  • npl/mailserver/dspam/initdb.sql

    r20eb816 rd36701a  
    99  innocent_hits int not null,
    1010  last_hit date not null
    11 ) type=MyISAM PACK_KEYS=1;
     11) ENGINE=MyISAM PACK_KEYS=1;
    1212
    1313create unique index id_token_data_01 on dspam_token_data(uid,token);
     
    1919  length smallint not null,
    2020  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;
    2222
    2323create unique index id_signature_data_01 on dspam_signature_data(uid,signature);
     
    3434  spam_classified int not null,
    3535  innocent_classified int not null
    36 ) type=MyISAM;
     36) ENGINE=MyISAM;
    3737
    3838create table dspam_preferences (
     
    4040  preference varchar(32) not null,
    4141  value varchar(64) not null
    42 ) type=MyISAM;
     42) ENGINE=MyISAM;
    4343
    4444create unique index id_preferences_01 on dspam_preferences(uid, preference);
     
    4949  uid smallint unsigned primary key AUTO_INCREMENT,
    5050  username varchar(128)
    51 ) type=MyISAM;
     51) ENGINE=MyISAM;
    5252
    5353create unique index id_virtual_uids_01 on dspam_virtual_uids(username);
Note: See TracChangeset for help on using the changeset viewer.