NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
5 lines
132 B
SQL
5 lines
132 B
SQL
-- User-defined label for saved addresses (e.g. home, office)
|
|
|
|
ALTER TABLE addresses
|
|
ADD COLUMN IF NOT EXISTS label VARCHAR(100);
|