DECLARE @Id AS BIGINT
Select @Id = Id From sysobjects Where Name = 'Over_Under'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'PurchaseAction')
  Alter Table Over_Under Add PurchaseAction TINYINT DEFAULT(0) 
