wiki.techinc.nl/maintenance/archives/patch-ipblocks_restrictions-ir_ipb_id.sql
Umherirrender 52aebe227b schema: Make ipblocks.ipb_id unsigned
It makes it more consistent with AUTO_INCREMENT PRIMARY KEY columns on
other tables.

This includes ipblocks.ipb_parent_block_id and
ipblocks_restrictions.ir_ipb_id as well

This patch doesn't apply to Postgres.

Bug: T297208
Change-Id: I950aba63b2b226abbaf4010fbb51415bbff117f4
2022-04-14 17:45:41 +02:00

6 lines
No EOL
362 B
SQL

-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: maintenance/abstractSchemaChanges/patch-ipblocks_restrictions-ir_ipb_id.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
ALTER TABLE /*_*/ipblocks_restrictions
CHANGE ir_ipb_id ir_ipb_id INT UNSIGNED NOT NULL;