IF not EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'PrescriptionFormula' AND  COLUMN_NAME = 'Name')
begin
	alter table dbo.PrescriptionFormula	add Name	nvarchar(200) not null default ''
end