Files
api/lnvps_db/migrations/20250313140640_empty_country.sql
Kieran 2d55392050
Some checks failed
continuous-integration/drone Build is failing
feat: update revolut order data
2025-03-14 10:03:52 +00:00

5 lines
166 B
SQL

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;