http://www.mediawiki.org/wiki/Special:Code/MediaWiki/89691

Revision: 89691
Author:   ashley
Date:     2011-06-07 21:24:21 +0000 (Tue, 07 Jun 2011)
Log Message:
-----------
WikiForum: respect $wgDBTableOptions

Modified Paths:
--------------
    trunk/extensions/WikiForum/wikiforum.sql

Modified: trunk/extensions/WikiForum/wikiforum.sql
===================================================================
--- trunk/extensions/WikiForum/wikiforum.sql    2011-06-07 21:23:36 UTC (rev 
89690)
+++ trunk/extensions/WikiForum/wikiforum.sql    2011-06-07 21:24:21 UTC (rev 
89691)
@@ -20,7 +20,7 @@
        `wfc_edited_user` int(10) NOT NULL DEFAULT '0', -- formerly: EditedBy
        `wfc_deleted` int(10) NOT NULL DEFAULT '0', -- formerly: Deleted
        `wfc_deleted_user` int(10) NOT NULL DEFAULT '0' -- formerly: DeletedBy
-);
+)/*$wgDBTableOptions*/;
 
 CREATE TABLE IF NOT EXISTS /*_*/wikiforum_forums (
        `wff_forum` int(10) NOT NULL PRIMARY KEY AUTO_INCREMENT, -- formerly: 
pkForum
@@ -39,7 +39,7 @@
        `wff_deleted` int(10) NOT NULL DEFAULT '0', -- formerly: Deleted
        `wff_deleted_user` int(10) NOT NULL DEFAULT '0', -- formerly: DeletedBy
        `wff_announcement` tinyint(2) NOT NULL DEFAULT '0' -- new in version 
1.2; previously called "Announcement"
-);
+)/*$wgDBTableOptions*/;
 
 CREATE TABLE IF NOT EXISTS /*_*/wikiforum_threads (
        `wft_thread` int(10) NOT NULL PRIMARY KEY AUTO_INCREMENT, -- formerly: 
pkThread
@@ -59,7 +59,7 @@
        `wft_view_count` int(10) NOT NULL DEFAULT '0', -- formerly: num_calls
        `wft_last_post_user` int(10) NOT NULL DEFAULT '0', -- formerly: 
lastpost_user
        `wft_last_post_timestamp` binary(14) NOT NULL DEFAULT '' -- formerly: 
lastpost_time
-);
+)/*$wgDBTableOptions*/;
 
 -- formerly: wikiforum_comments
 CREATE TABLE IF NOT EXISTS /*_*/wikiforum_replies (
@@ -72,4 +72,4 @@
        `wfr_edit_timestamp` binary(14) NOT NULL DEFAULT '', -- formerly: Edit
        `wfr_edit_user` int(10) NOT NULL DEFAULT '0', -- formerly: EditBy
        `wfr_thread` int(10) NOT NULL -- formerly: fkThread
-);
\ No newline at end of file
+)/*$wgDBTableOptions*/;
\ No newline at end of file


_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to