Skip to content

Instantly share code, notes, and snippets.

@rohit-lakhanpal
Created August 13, 2022 06:50
Show Gist options
  • Save rohit-lakhanpal/cca3095c6929eb6312dbf74d5f57e051 to your computer and use it in GitHub Desktop.
Save rohit-lakhanpal/cca3095c6929eb6312dbf74d5f57e051 to your computer and use it in GitHub Desktop.
Script to create local databases for the Azure SaaS Dev Kit.
USE master;
GO
IF DB_ID ( N'AsdkTenancyDb' ) IS NOT NULL
DROP DATABASE AsdkTenancyDb;
GO
CREATE DATABASE AsdkTenancyDb;
GO
USE master;
GO
IF DB_ID ( N'AsdkPermissionsDb' ) IS NOT NULL
DROP DATABASE AsdkPermissionsDb;
GO
CREATE DATABASE AsdkPermissionsDb;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment