Index: trunk/extensions/Survey/Survey.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | die( '<b>Error:</b> Survey requires MediaWiki 1.17 or above.' ); |
30 | 30 | } |
31 | 31 | |
32 | | -define( 'Survey_VERSION', '0.1.1' ); |
| 32 | +define( 'Survey_VERSION', '0.2 alpha' ); |
33 | 33 | |
34 | 34 | $wgExtensionCredits['other'][] = array( |
35 | 35 | 'path' => __FILE__, |
Index: trunk/extensions/Survey/Survey.hooks.php |
— | — | @@ -88,14 +88,14 @@ |
89 | 89 | $updater->addExtensionUpdate( array( |
90 | 90 | 'addIndex', |
91 | 91 | 'survey_answers', |
92 | | - 'answer_question_id', |
| 92 | + 'surveys_question_id', |
93 | 93 | dirname( __FILE__ ) . '/sql/Survey_indexQuestionId.sql', |
94 | 94 | true |
95 | 95 | ) ); |
96 | 96 | $updater->addExtensionUpdate( array( |
97 | 97 | 'addIndex', |
98 | 98 | 'survey_answers', |
99 | | - 'answer_submission_id', |
| 99 | + 'surveys_submission_id', |
100 | 100 | dirname( __FILE__ ) . '/sql/Survey_indexSubmissionId.sql', |
101 | 101 | true |
102 | 102 | ) ); |
Index: trunk/extensions/Survey/RELEASE-NOTES |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | === Version 0.2 === |
9 | 9 | 2011-xx-xx |
10 | 10 | |
11 | | -* |
| 11 | +* Fixed issue with database index names causing update.php to fail when running after installation of Survey. |
12 | 12 | |
13 | 13 | === Version 0.1.1 === |
14 | 14 | 2011-09-18 |