Replace company email with address field

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Krao Hasanee
2026-03-26 23:59:21 -04:00
parent 8b5494a824
commit e7174d392c
3 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -7,8 +7,8 @@
create table public.companies (
id uuid default gen_random_uuid() primary key,
name text not null,
email text default '',
phone text default '',
address text default '',
created_at timestamptz default now() not null
);
alter table public.companies enable row level security;