Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'tblGuy_Info'
if NOT  Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'AccountHeadlines')
  Alter table tblGuy_Info Add AccountHeadlines TINYINT null
      
 
                              
Select @Id = Id From sysobjects Where Name = 'tblGuy_Info'
if Not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'liquidationType')
  Alter table tblGuy_Info Add liquidationType TINYINT null
  