Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'tblShopSettings'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'OffPercent')
  Alter Table tblShopSettings Add OffPercent int



