aboutsummaryrefslogtreecommitdiffstats
path: root/sql/postgres/patch-searchindex-pk-titlelength.sql
blob: cee04e5b2aa9c68770eab69f1d1c8801d885d7b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: maintenance/abstractSchemaChanges/patch-searchindex-innodb-pk-titlelength.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
DROP INDEX si_page;
ALTER TABLE searchindex
  ALTER si_title
  DROP DEFAULT;
ALTER TABLE searchindex
  ALTER si_title TYPE TEXT;
ALTER TABLE searchindex
  ADD PRIMARY KEY (si_page);