Skip to content

Instantly share code, notes, and snippets.

@HarryMcCarney
Created December 18, 2014 15:06
Show Gist options
  • Save HarryMcCarney/c1c5fe10045b4cbd094b to your computer and use it in GitHub Desktop.
Save HarryMcCarney/c1c5fe10045b4cbd094b to your computer and use it in GitHub Desktop.
if exists(select * from sys.columns
where Name = N'seven_day_impressions' and Object_ID = Object_ID(N'pub.article'))
begin
alter table pub.article
drop column seven_day_impressions
end
go
alter table pub.article
add seven_day_impressions int
go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment