8
0

Serverumzug

This commit is contained in:
2026-04-13 12:08:30 +02:00
parent 3096e432aa
commit 82609f5fc1
48 changed files with 5489 additions and 618 deletions

View File

@@ -0,0 +1,12 @@
/* ============================================================================
META SCHEMA-SKRIPT
============================================================================ */
USE [DD_IIM];
GO
IF SCHEMA_ID(N'_meta') IS NULL
BEGIN
EXEC(N'CREATE SCHEMA [_meta] AUTHORIZATION [dbo];');
END;
GO