USE [EnVisage]
GO
if not exists (select * from sys.all_columns where name like 'FirstName' and object_id = OBJECT_ID('AspNetUsers'))
begin
alter table [AspNetUsers]
add FirstName nvarchar(40) NULL,
LastName nvarchar(40) NULL
end