Changeset 1896 in ExiteCMS for modules/common/wiki/php-files/modules/wiki/module_installer.php
- Timestamp:
- 10/20/08 08:51:52 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/common/wiki/php-files/modules/wiki/module_installer.php
r1826 r1896 149 149 comment_acl text NOT NULL, 150 150 PRIMARY KEY (page_tag) 151 ) ENGINE=MyISAM ;");151 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 152 152 153 153 // and add initial record(s) to it … … 164 164 KEY idx_page_tag (page_tag), 165 165 KEY idx_time (time) 166 ) ENGINE=MyISAM ;");166 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 167 167 168 168 // create the table: wiki_links … … 173 173 KEY idx_from (from_tag), 174 174 KEY idx_to (to_tag) 175 ) ENGINE=MyISAM ;");175 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 176 176 177 177 // create the table: wiki_aliases … … 182 182 KEY idx_from (from_tag), 183 183 KEY idx_to (to_tag) 184 ) ENGINE=MyISAM ;");184 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 185 185 186 186 // create the table: wiki_pages … … 201 201 KEY idx_latest (latest), 202 202 FULLTEXT KEY body (body) 203 ) ENGINE=MyISAM ;");203 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 204 204 205 205 // and add initial record(s) to it … … 230 230 spammer varchar(150) NOT NULL default '', 231 231 KEY idx_spammer (spammer) 232 ) ENGINE=MyISAM ;");232 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 233 233 234 234 // and add initial record(s) to it … … 242 242 KEY idx_page_tag (page_tag), 243 243 KEY idx_time (time) 244 ) ENGINE=MyISAM ;");244 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 245 245 246 246 // create the table: wiki_users … … 256 256 PRIMARY KEY (name), 257 257 KEY idx_signuptime (signuptime) 258 ) ENGINE=MyISAM ;");258 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 259 259 260 260 // create the table: wiki_images … … 264 264 image_name VARCHAR( 100 ) NOT NULL , 265 265 image_realname VARCHAR( 100 ) NOT NULL , 266 PRIMARY KEY ( image_id )267 ) ENGINE=MyISAM ;");266 PRIMARY KEY ( image_id ) 267 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"); 268 268 269 269 // create the user groups for this module
Note: See TracChangeset
for help on using the changeset viewer.
