web server

This commit is contained in:
2026-05-20 14:10:25 +07:00
parent 5ade939ff9
commit 190d2418da
30 changed files with 8917 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
IF DB_ID(N'RobotInstaller') IS NULL
BEGIN
CREATE DATABASE [RobotInstaller];
END;
GO
USE [RobotInstaller];
GO
PRINT N'Database RobotInstaller is ready.';
GO