Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'Tbl_ClubH'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'ServiceType')
  Alter Table dbo.Tbl_ClubH Add ServiceType TINYINT DEFAULT(1) NOT NULL 
