Ignore:
Timestamp:
10/20/08 08:51:12 (4 years ago)
Author:
hverton
Message:

updated the module_installer to create utf8 tables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/common/mail2forum/php-files/modules/mail2forum/module_installer.php

    r1826 r1891  
    390390  m2f_inline tinyint(1) unsigned NOT NULL default '0', 
    391391  m2f_thumbnail tinyint(1) unsigned NOT NULL default '0' 
    392 ) ENGINE=MyISAM;"); 
     392) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 
    393393 
    394394// M2F_forums: mailer configuration table 
     
    408408  PRIMARY KEY  (m2f_id), 
    409409  UNIQUE KEY m2f_forumid (m2f_forumid) 
    410 ) ENGINE=MyISAM;"); 
     410) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 
    411411 
    412412// M2F_subscriptions: user subscription table 
     
    417417  m2f_subscribed tinyint(1) unsigned NOT NULL default '0', 
    418418  PRIMARY KEY  (m2f_subid) 
    419 ) ENGINE=MyISAM;"); 
     419) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 
    420420 
    421421// M2F configuration items 
Note: See TracChangeset for help on using the changeset viewer.