This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,19 @@
IF SCHEMA_ID('dev') IS NULL BEGIN
EXEC sp_executesql N'CREATE SCHEMA dev'
END
GO
IF SCHEMA_ID('auditlog') IS NULL BEGIN
EXEC sp_executesql N'CREATE SCHEMA auditlog'
END
GO
IF SCHEMA_ID('core') IS NULL BEGIN
EXEC sp_executesql N'CREATE SCHEMA core'
END
GO
IF SCHEMA_ID('tmp') IS NULL BEGIN
EXEC sp_executesql N'CREATE SCHEMA tmp'
END
GO