Merge "Provide PHPUnit 4 and 6 compatibility layer"
[lhc/web/wiklou.git] / maintenance / postgres / archives / patch-revision_rev_user_fkey.sql
1 ALTER TABLE revision DROP CONSTRAINT revision_rev_user_fkey;
2 ALTER TABLE revision ADD CONSTRAINT revision_rev_user_fkey
3 FOREIGN KEY (rev_user) REFERENCES mwuser(user_id) ON DELETE RESTRICT;
4