Ticket #904: explicit-db-engine.diff

File explicit-db-engine.diff, 871 bytes (added by Nicolas, 15 years ago)
  • db/schema.sql

     
    307307    verification        integer     not null,
    308308        -- UOD screening status: -1 denied, 0 unrated, 1 approved
    309309    primary key (userid)
    310 );
     310) engine=MyISAM;
    311311
    312312-- message board category
    313313-- help desk is a group of categories that are handled separately
     
    380380    sticky              tinyint not null default 0,
    381381    locked              tinyint not null default 0,
    382382    primary key (id)
    383 );
     383) engine=MyISAM;
    384384
    385385-- postings in a thread (or answers)
    386386-- Each thread has an initial post
     
    402402    hidden              integer     not null,
    403403        -- nonzero if hidden by moderators
    404404    primary key (id)
    405 );
     405) engine=MyISAM;
    406406
    407407-- subscription to a thread
    408408--