You could add the column and provide the default value to be used for all existing rows.
ALTER TABLE foo
ADD bar bit
DEFAULT 0 NOT NULL;
You could add the column and provide the default value to be used for all existing rows.
ALTER TABLE foo
ADD bar bit
DEFAULT 0 NOT NULL;