alter table employee
add (profit_sharing_indicator Number (1,0) NULL
constraint between_0_and_1 check (
profit_sharing_indicator between 0 and 1
)
;