Manual:PatchSql.php/pl
Appearance
| Wersja MediaWiki: | ≥ 1.16 |
| Plik MediaWiki: patchSql.php | |
|---|---|
| Lokalizacja: | maintenance/ |
| Kod źródłowy: | master • 1.44.2 • 1.43.5 • 1.39.15 |
| Klasy: | PatchSql |
Details
patchSql.php file is a maintenance script to manually run an SQL patch outside of the general updaters.
Arguments
| Argument | Description | Required? |
|---|---|---|
| patch-name | Name of the patch file, either full path or in sql/$dbtype/ | Wymagane |
Usage
php maintenance/run.php patchSql patch-name
custom-patch.sql
ALTER TABLE /*_*/actor ADD email varchar(255) NOT NULL;
Terminal
$ php maintenance/run.php patchSql custom-patch.sql custom-patch.sql ... done.
In MediaWiki version 1.39.15 and earlier, you must invoke maintenance scripts using
php maintenance/scriptName.php instead of php maintenance/run.php scriptName.