feat: add a new col and populate it

This commit is contained in:
silver 2025-03-11 00:02:15 +00:00
parent f193bb5ee9
commit 6510696851
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
3 changed files with 18 additions and 2 deletions

16
db/2_wolves-id.sql Normal file
View file

@ -0,0 +1,16 @@
-- add a col for the wolves ID
ALTER TABLE accounts ADD COLUMN id_wolves integer DEFAULT 0;
-- fill in the values
UPDATE accounts
SET id_wolves=(
SELECT id_wolves
FROM accounts_wolves
WHERE accounts.mail=accounts_wolves.email
)
WHERE (
SELECT id_wolves
FROM accounts_wolves
WHERE accounts.mail=accounts_wolves.email
) IS NOT NULL