wiki.techinc.nl/maintenance/archives/patch-filearchive-fa_id.sql
Umherirrender 45c84bf927 schema: Make filearchive.fa_id unsigned
It makes it more consistent with AUTO_INCREMENT PRIMARY KEY columns on
other tables.

This patch doesn't apply to Sqlite or Postgres.

Bug: T297207
Change-Id: I5e58f23ea2441ef93ce7254210158d8094bd9010
2021-12-07 15:25:13 +01:00

6 lines
No EOL
345 B
SQL

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