In SQL SERVER it is BIT, though it allows NULL to be stored
ALTER TABLE person add [AdminApproved] BIT default 'FALSE';
Also there are other mistakes in your query
-
When you alter a table to add column no need to mention
columnkeyword inalterstatement -
For adding default constraint no need to use
SETkeyword -
Default value for a
BITcolumn can be('TRUE' or '1')/('FALSE' or 0).TRUEorFALSEneeds to mentioned asstringnot as Identifier