Merge parent_id migration into single 2026021000 upgrade script

This commit is contained in:
Laurent Dinclaux
2026-02-10 22:30:20 +11:00
parent 0dbba36345
commit da573c184e
5 changed files with 16 additions and 18 deletions

View File

@@ -51,3 +51,9 @@ ALTER TABLE ident_switch
ADD notify_desktop
smallint
DEFAULT NULL;
-- Add alias support: parent_id links an alias identity to a parent account
ALTER TABLE ident_switch
ADD parent_id integer DEFAULT NULL;
CREATE INDEX IX_ident_switch_parent_id ON ident_switch(parent_id);

View File

@@ -1,5 +0,0 @@
-- Add alias support: parent_id links an alias identity to a parent account
ALTER TABLE ident_switch
ADD parent_id integer DEFAULT NULL;
CREATE INDEX IX_ident_switch_parent_id ON ident_switch(parent_id);