Create unique constraints for tmp_password and role_member.

This commit is contained in:
Andrew Ruthven 2023-02-04 21:33:08 +13:00
parent e3b5c331be
commit 8fbab49f0d

View File

@ -54,6 +54,12 @@ CREATE UNIQUE INDEX calendar_alarms_pk
-- Tidy up after ourselves.
DROP SEQUENCE temporary_seq;
-- Add unique constraints where no other changes are needed.
CREATE UNIQUE INDEX role_member_pk
ON role_member (role_no, user_no);
CREATE UNIQUE INDEX tmp_password_pk
ON tmp_password (user_no, valid_until);
-- http://blogs.transparent.com/polish/names-of-the-months-and-their-meaning/
SELECT new_db_revision(1,3,4, 'Kwiecień' );