check (coalesce(from_status_id, to_status_id) is not null),
add constraint new_lead_status_change_is_not_same check (from_status_id <> to_status_id);
или это
add constraint lead_status_change_is_not_null check (coalesce(from_status, to_status) is not null),
add constraint lead_status_change_is_not_same check (from_status <> to_status)
типа то или это
А что не работает-то?
Обсуждают сегодня