Backup commit on 2025-05-23 18:05:46

This commit is contained in:
ashutosh.nehete 2025-05-23 18:05:46 +05:30
parent 1564098a72
commit f0ed9f2e31
6 changed files with 10192 additions and 0 deletions

View File

@ -0,0 +1,34 @@
-- MySQL dump 10.13 Distrib 8.0.41, for Win64 (x86_64)
--
-- Host: 147.93.98.152 Database: MarcoBMSProd
-- ------------------------------------------------------
-- Server version 8.0.42-0ubuntu0.24.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `ActivityCheckLists`
--
DROP TABLE IF EXISTS `ActivityCheckLists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ActivityCheckLists` (
`Id` char(36) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`ActivityId` char(36) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`Description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci,
`IsChecked` tinyint(1) NOT NULL,
`IsMandatory` tinyint(1) NOT NULL,
`TenantId` char(36) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long