added globally unique identifier for Site ( used string data type to ensure compatibility with multiple database engines )

This commit is contained in:
Shaun Walker
2021-04-02 12:30:20 -04:00
parent 00f8f2cb89
commit 14480edd67
5 changed files with 93 additions and 68 deletions

View File

@ -0,0 +1,10 @@
/*
Version 2.0.2 Tenant migration script
*/
ALTER TABLE [dbo].[Site] ADD
[SiteGuid] [char](36) NULL
GO