Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'History_Price'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'ChangePrice')
  Alter Table dbo.History_Price Add ChangePrice Char(1) NULL