Rozwiązanie/obejście
Aby obejść ten problem, zawsze dodawaj do istniejących tabel kolumny niepodlegające wartości null w sposób podobny do następującego:
-- Add the column as nullable with a default.
ALTER TABLE existingTable ADD newColumn NUMBER(1) DEFAULT 5;
-- Add the not-null constraint.
ALTER TABLE existingTable MODIFY newColumn NOT NULL;