unis_crm/sql/archive/alter_opportunity_archive_p...

6 lines
185 B
MySQL
Raw Normal View History

2026-03-27 09:05:41 +00:00
alter table crm_opportunity
add column if not exists archived boolean not null default false;
create index if not exists idx_crm_opportunity_archived
on crm_opportunity(archived);