IF not EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Contract' AND COLUMN_NAME = 'Price') begin alter table dbo.Contract add Price decimal(19,4) null end