X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Finstaller%2FPostgresUpdater.php;h=1eb3f41731df70df532c7245a56d8cffdc2d5868;hb=ce079cf6ad79ca8d3360817f809b219d166f9153;hp=790fbe7b3113ba719489f33e53a8f212becf8c71;hpb=5111bd2def4e63ecc8a2acbf468e5c39029f9efd;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index 790fbe7b31..1eb3f41731 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -443,6 +443,11 @@ class PostgresUpdater extends DatabaseUpdater { "INTEGER NOT NULL PRIMARY KEY DEFAULT nextval('change_tag_ct_id_seq')" ], [ 'addPgField', 'tag_summary', 'ts_id', "INTEGER NOT NULL PRIMARY KEY DEFAULT nextval('tag_summary_ts_id_seq')" ], + + // 1.29 + [ 'addPgField', 'externallinks', 'el_index_60', "BYTEA NOT NULL DEFAULT ''" ], + [ 'addPgIndex', 'externallinks', 'el_index_60', '( el_index_60, el_id )' ], + [ 'addPgIndex', 'externallinks', 'el_from_index_60', '( el_from, el_index_60, el_id )' ], ]; }