Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -153,6 +153,8 @@ |
154 | 154 | * Add a new update coming from an extension. This should be called by |
155 | 155 | * extensions while executing the LoadExtensionSchemaUpdates hook. |
156 | 156 | * |
| 157 | + * @since 1.17 |
| 158 | + * |
157 | 159 | * @param $update Array: the update to run. Format is the following: |
158 | 160 | * first item is the callback function, it also can be a |
159 | 161 | * simple string with the name of a function in this class, |
— | — | @@ -167,6 +169,9 @@ |
168 | 170 | /** |
169 | 171 | * Convenience wrapper for addExtensionUpdate() when adding a new table (which |
170 | 172 | * is the most common usage of updaters in an extension) |
| 173 | + * |
| 174 | + * @since 1.18 |
| 175 | + * |
171 | 176 | * @param $tableName String Name of table to create |
172 | 177 | * @param $sqlPath String Full path to the schema file |
173 | 178 | */ |
— | — | @@ -175,6 +180,8 @@ |
176 | 181 | } |
177 | 182 | |
178 | 183 | /** |
| 184 | + * @since 1.19 |
| 185 | + * |
179 | 186 | * @param $tableName string |
180 | 187 | * @param $indexName string |
181 | 188 | * @param $sqlPath string |
— | — | @@ -184,6 +191,9 @@ |
185 | 192 | } |
186 | 193 | |
187 | 194 | /** |
| 195 | + * |
| 196 | + * @since 1.19 |
| 197 | + * |
188 | 198 | * @param $tableName string |
189 | 199 | * @param $columnName string |
190 | 200 | * @param $sqlPath string |