mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-03-14 08:10:13 +00:00
Create unique constraints for tmp_password and role_member.
This commit is contained in:
parent
e3b5c331be
commit
8fbab49f0d
@ -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ń' );
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user