Index: trunk/extensions/CentralNotice/CentralNotice.php |
— | — | @@ -147,6 +147,8 @@ |
148 | 148 | $base . '/patches/patch-notice_countries.sql' ); |
149 | 149 | $wgExtNewTables[] = array( 'cn_notice_projects', |
150 | 150 | $base . '/patches/patch-notice_projects.sql' ); |
| 151 | + $wgExtNewTables[] = array( 'cn_notice_log', |
| 152 | + $base . '/patches/patch-notice_log.sql' ); |
151 | 153 | } |
152 | 154 | } else { |
153 | 155 | if ( $updater->getDB()->getType() == 'mysql' ) { |
— | — | @@ -164,6 +166,8 @@ |
165 | 167 | $base . '/patches/patch-notice_countries.sql', true ) ); |
166 | 168 | $updater->addExtensionUpdate( array( 'addTable', 'cn_notice_projects', |
167 | 169 | $base . '/patches/patch-notice_projects.sql', true ) ); |
| 170 | + $updater->addExtensionUpdate( array( 'addTable', 'cn_notice_log', |
| 171 | + $base . '/patches/patch-notice_log.sql', true ) ); |
168 | 172 | } |
169 | 173 | } |
170 | 174 | return true; |