Declare @Id Int 
Select @Id = Id From sysobjects Where Name = 'Label_EndStatus'
if not Exists(SELECT id FROM syscolumns WHERE id = @Id  and Name = 'PicPath')
ALTER TABLE Label_EndStatus ADD  PicPath nvarchar(200) null 