feat: update revolut order data
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2025-03-14 10:03:52 +00:00
parent 02d606d60c
commit 2d55392050
10 changed files with 540 additions and 289 deletions

View File

@ -0,0 +1,5 @@
alter table users
change column country_code country_code varchar (3);
-- assume country_code was not actually set until now
update users
set country_code = null;