1
0
Fork 0

Remove unique index

This commit is contained in:
Alex Kotov 2023-02-18 16:00:16 +04:00
parent 7369489b7a
commit 4daf40fc6b
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
BEGIN;
CREATE UNIQUE INDEX word_forms_word_value_index ON word_forms (word_id, value);
COMMIT;

View File

@ -0,0 +1,3 @@
BEGIN;
DROP INDEX word_forms_word_value_index;
COMMIT;