mirror of https://github.com/TZGyn/shortener
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
320 B
SQL
11 lines
320 B
SQL
-- Custom SQL migration file, put you code below! --
|
|
-- copy qr background setting
|
|
UPDATE "user"
|
|
SET qr_background = setting.qr_background
|
|
FROM setting
|
|
WHERE setting.user_id = "user".id;
|
|
-- copy qr foreground setting
|
|
UPDATE "user"
|
|
SET qr_foreground = setting.qr_foreground
|
|
FROM setting
|
|
WHERE setting.user_id = "user".id; |