Feat: Add city, district, and address fields to Customer

This commit is contained in:
2025-12-03 22:18:51 +03:00
parent db961c95a4
commit e5f7680393
3 changed files with 86 additions and 18 deletions

View File

@@ -15,6 +15,9 @@ create table customers (
full_name text not null,
phone text,
email text,
city text,
district text,
address text,
notes text,
created_at timestamp with time zone default timezone('utc'::text, now()) not null
);