wiki.techinc.nl/maintenance/archives/patch-templatelinks-drop-tl_title.sql
Amir Sarabadani 6c4194e23e schema: Drop tl_title and tl_namespace fields from templatelinks
The day has gone. Still keeping the code as the schema changes are not
done in production but the data migration has been finished.

Bug: T299417
Change-Id: I906e069a63d1dae14924c72318b22b16244371d6
2022-09-06 19:53:15 +02:00

9 lines
No EOL
443 B
SQL

-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: maintenance/abstractSchemaChanges/patch-templatelinks-drop-tl_title.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
DROP INDEX tl_namespace ON /*_*/templatelinks;
DROP INDEX tl_backlinks_namespace ON /*_*/templatelinks;
ALTER TABLE /*_*/templatelinks
DROP tl_namespace,
DROP tl_title;