Skip to content

Commit cff815d

Browse files
renemadsenclaude
andcommitted
feat: add DB dump for Playwright workflow plugin tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 262805b commit cff815d

File tree

1 file changed

+292
-0
lines changed

1 file changed

+292
-0
lines changed
Lines changed: 292 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,292 @@
1+
-- MySQL dump 10.13 Distrib 8.0.23, for Win64 (x86_64)
2+
--
3+
-- Host: localhost Database: 420_eform-angular-workflow-plugin
4+
-- ------------------------------------------------------
5+
-- Server version 8.0.23
6+
7+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10+
/*!50503 SET NAMES utf8mb4 */;
11+
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12+
/*!40103 SET TIME_ZONE='+00:00' */;
13+
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14+
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15+
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16+
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17+
18+
--
19+
-- Table structure for table `__EFMigrationsHistory`
20+
--
21+
22+
DROP TABLE IF EXISTS `__EFMigrationsHistory`;
23+
/*!40101 SET @saved_cs_client = @@character_set_client */;
24+
/*!50503 SET character_set_client = utf8 */;
25+
CREATE TABLE `__EFMigrationsHistory` (
26+
`MigrationId` varchar(150) NOT NULL,
27+
`ProductVersion` varchar(32) NOT NULL,
28+
PRIMARY KEY (`MigrationId`) USING BTREE
29+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
30+
/*!40101 SET character_set_client = @saved_cs_client */;
31+
32+
--
33+
-- Dumping data for table `__EFMigrationsHistory`
34+
--
35+
36+
LOCK TABLES `__EFMigrationsHistory` WRITE;
37+
/*!40000 ALTER TABLE `__EFMigrationsHistory` DISABLE KEYS */;
38+
INSERT INTO `__EFMigrationsHistory` VALUES ('20210621182502_InitialCreate','5.0.7');
39+
/*!40000 ALTER TABLE `__EFMigrationsHistory` ENABLE KEYS */;
40+
UNLOCK TABLES;
41+
42+
--
43+
-- Table structure for table `PluginConfigurationValues`
44+
--
45+
46+
DROP TABLE IF EXISTS `PluginConfigurationValues`;
47+
/*!40101 SET @saved_cs_client = @@character_set_client */;
48+
/*!50503 SET character_set_client = utf8 */;
49+
CREATE TABLE `PluginConfigurationValues` (
50+
`Id` int NOT NULL AUTO_INCREMENT,
51+
`Name` longtext,
52+
`Value` longtext,
53+
`CreatedAt` datetime(6) NOT NULL,
54+
`UpdatedAt` datetime(6) DEFAULT NULL,
55+
`WorkflowState` varchar(255) DEFAULT NULL,
56+
`CreatedByUserId` int NOT NULL,
57+
`UpdatedByUserId` int NOT NULL,
58+
`Version` int NOT NULL,
59+
PRIMARY KEY (`Id`) USING BTREE
60+
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
61+
/*!40101 SET character_set_client = @saved_cs_client */;
62+
63+
--
64+
-- Dumping data for table `PluginConfigurationValues`
65+
--
66+
67+
LOCK TABLES `PluginConfigurationValues` WRITE;
68+
/*!40000 ALTER TABLE `PluginConfigurationValues` DISABLE KEYS */;
69+
INSERT INTO `PluginConfigurationValues` VALUES (1,'WorkflowBaseSettings:FirstEformId','0','2021-06-21 18:40:58.446267','2021-06-21 18:40:58.446456','created',1,0,1),(2,'WorkflowBaseSettings:SecondEformId','0','2021-06-21 18:40:58.598450','2021-06-21 18:40:58.598451','created',1,0,1);
70+
/*!40000 ALTER TABLE `PluginConfigurationValues` ENABLE KEYS */;
71+
UNLOCK TABLES;
72+
73+
--
74+
-- Table structure for table `PluginConfigurationValueVersions`
75+
--
76+
77+
DROP TABLE IF EXISTS `PluginConfigurationValueVersions`;
78+
/*!40101 SET @saved_cs_client = @@character_set_client */;
79+
/*!50503 SET character_set_client = utf8 */;
80+
CREATE TABLE `PluginConfigurationValueVersions` (
81+
`Id` int NOT NULL AUTO_INCREMENT,
82+
`Name` longtext,
83+
`Value` longtext,
84+
`CreatedAt` datetime(6) NOT NULL,
85+
`UpdatedAt` datetime(6) DEFAULT NULL,
86+
`WorkflowState` varchar(255) DEFAULT NULL,
87+
`CreatedByUserId` int NOT NULL,
88+
`UpdatedByUserId` int NOT NULL,
89+
`Version` int NOT NULL,
90+
PRIMARY KEY (`Id`) USING BTREE
91+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
92+
/*!40101 SET character_set_client = @saved_cs_client */;
93+
94+
--
95+
-- Dumping data for table `PluginConfigurationValueVersions`
96+
--
97+
98+
LOCK TABLES `PluginConfigurationValueVersions` WRITE;
99+
/*!40000 ALTER TABLE `PluginConfigurationValueVersions` DISABLE KEYS */;
100+
/*!40000 ALTER TABLE `PluginConfigurationValueVersions` ENABLE KEYS */;
101+
UNLOCK TABLES;
102+
103+
--
104+
-- Table structure for table `PluginGroupPermissions`
105+
--
106+
107+
DROP TABLE IF EXISTS `PluginGroupPermissions`;
108+
/*!40101 SET @saved_cs_client = @@character_set_client */;
109+
/*!50503 SET character_set_client = utf8 */;
110+
CREATE TABLE `PluginGroupPermissions` (
111+
`Id` int NOT NULL AUTO_INCREMENT,
112+
`GroupId` int NOT NULL,
113+
`PermissionId` int NOT NULL,
114+
`IsEnabled` tinyint(1) NOT NULL,
115+
`CreatedAt` datetime(6) NOT NULL,
116+
`UpdatedAt` datetime(6) DEFAULT NULL,
117+
`WorkflowState` varchar(255) DEFAULT NULL,
118+
`CreatedByUserId` int NOT NULL,
119+
`UpdatedByUserId` int NOT NULL,
120+
`Version` int NOT NULL,
121+
PRIMARY KEY (`Id`) USING BTREE,
122+
KEY `IX_PluginGroupPermissions_PermissionId` (`PermissionId`) USING BTREE,
123+
CONSTRAINT `FK_PluginGroupPermissions_PluginPermissions_PermissionId` FOREIGN KEY (`PermissionId`) REFERENCES `PluginPermissions` (`Id`) ON DELETE CASCADE ON UPDATE RESTRICT
124+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
125+
/*!40101 SET character_set_client = @saved_cs_client */;
126+
127+
--
128+
-- Dumping data for table `PluginGroupPermissions`
129+
--
130+
131+
LOCK TABLES `PluginGroupPermissions` WRITE;
132+
/*!40000 ALTER TABLE `PluginGroupPermissions` DISABLE KEYS */;
133+
INSERT INTO `PluginGroupPermissions` VALUES (1,1,1,1,'2021-06-21 18:40:58.762467','2021-06-21 18:40:58.762468','created',0,0,1);
134+
/*!40000 ALTER TABLE `PluginGroupPermissions` ENABLE KEYS */;
135+
UNLOCK TABLES;
136+
137+
--
138+
-- Table structure for table `PluginGroupPermissionVersions`
139+
--
140+
141+
DROP TABLE IF EXISTS `PluginGroupPermissionVersions`;
142+
/*!40101 SET @saved_cs_client = @@character_set_client */;
143+
/*!50503 SET character_set_client = utf8 */;
144+
CREATE TABLE `PluginGroupPermissionVersions` (
145+
`Id` int NOT NULL AUTO_INCREMENT,
146+
`GroupId` int NOT NULL,
147+
`PermissionId` int NOT NULL,
148+
`IsEnabled` tinyint(1) NOT NULL,
149+
`PluginGroupPermissionId` int NOT NULL,
150+
`CreatedAt` datetime(6) NOT NULL,
151+
`UpdatedAt` datetime(6) DEFAULT NULL,
152+
`WorkflowState` varchar(255) DEFAULT NULL,
153+
`CreatedByUserId` int NOT NULL,
154+
`UpdatedByUserId` int NOT NULL,
155+
`Version` int NOT NULL,
156+
PRIMARY KEY (`Id`) USING BTREE
157+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
158+
/*!40101 SET character_set_client = @saved_cs_client */;
159+
160+
--
161+
-- Dumping data for table `PluginGroupPermissionVersions`
162+
--
163+
164+
LOCK TABLES `PluginGroupPermissionVersions` WRITE;
165+
/*!40000 ALTER TABLE `PluginGroupPermissionVersions` DISABLE KEYS */;
166+
INSERT INTO `PluginGroupPermissionVersions` VALUES (1,1,1,1,1,'2021-06-21 18:40:58.762467','2021-06-21 18:40:58.762468','created',0,0,1);
167+
/*!40000 ALTER TABLE `PluginGroupPermissionVersions` ENABLE KEYS */;
168+
UNLOCK TABLES;
169+
170+
--
171+
-- Table structure for table `PluginPermissions`
172+
--
173+
174+
DROP TABLE IF EXISTS `PluginPermissions`;
175+
/*!40101 SET @saved_cs_client = @@character_set_client */;
176+
/*!50503 SET character_set_client = utf8 */;
177+
CREATE TABLE `PluginPermissions` (
178+
`Id` int NOT NULL AUTO_INCREMENT,
179+
`PermissionName` longtext,
180+
`ClaimName` longtext,
181+
`CreatedAt` datetime(6) NOT NULL,
182+
`UpdatedAt` datetime(6) DEFAULT NULL,
183+
`WorkflowState` varchar(255) DEFAULT NULL,
184+
`CreatedByUserId` int NOT NULL,
185+
`UpdatedByUserId` int NOT NULL,
186+
`Version` int NOT NULL,
187+
PRIMARY KEY (`Id`) USING BTREE
188+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
189+
/*!40101 SET character_set_client = @saved_cs_client */;
190+
191+
--
192+
-- Dumping data for table `PluginPermissions`
193+
--
194+
195+
LOCK TABLES `PluginPermissions` WRITE;
196+
/*!40000 ALTER TABLE `PluginPermissions` DISABLE KEYS */;
197+
INSERT INTO `PluginPermissions` VALUES (1,'Access Workflow Plugin','workflow_plugin_access','2021-06-21 18:40:58.617381',NULL,'created',1,0,1);
198+
/*!40000 ALTER TABLE `PluginPermissions` ENABLE KEYS */;
199+
UNLOCK TABLES;
200+
201+
--
202+
-- Table structure for table `WorkflowCases`
203+
--
204+
205+
DROP TABLE IF EXISTS `WorkflowCases`;
206+
/*!40101 SET @saved_cs_client = @@character_set_client */;
207+
/*!50503 SET character_set_client = utf8 */;
208+
CREATE TABLE `WorkflowCases` (
209+
`Id` int NOT NULL AUTO_INCREMENT,
210+
`Description` longtext,
211+
`DateOfIncident` datetime(6) NOT NULL,
212+
`IncidentType` longtext,
213+
`IncidentPlace` longtext,
214+
`Deadline` datetime(6) NOT NULL,
215+
`ActionPlan` longtext,
216+
`SolvedBy` longtext,
217+
`Status` longtext,
218+
`PhotosExist` tinyint(1) NOT NULL,
219+
`MicrotingId` int NOT NULL,
220+
`CheckMicrotingUid` int NOT NULL,
221+
`CheckId` int NOT NULL,
222+
`CreatedAt` datetime(6) NOT NULL,
223+
`UpdatedAt` datetime(6) DEFAULT NULL,
224+
`WorkflowState` varchar(255) DEFAULT NULL,
225+
`CreatedByUserId` int NOT NULL,
226+
`UpdatedByUserId` int NOT NULL,
227+
`Version` int NOT NULL,
228+
PRIMARY KEY (`Id`) USING BTREE
229+
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
230+
/*!40101 SET character_set_client = @saved_cs_client */;
231+
232+
--
233+
-- Dumping data for table `WorkflowCases`
234+
--
235+
236+
LOCK TABLES `WorkflowCases` WRITE;
237+
/*!40000 ALTER TABLE `WorkflowCases` DISABLE KEYS */;
238+
INSERT INTO `WorkflowCases` VALUES (1,'47fb0240-8dc5-43b5-bd17-d31a4eb844d7','2021-06-21 21:04:51.000000','731dd508-d3d2-41cd-b9b1-0753a3de57e9','d14edf67-e864-4661-a3ba-6ce2d2c5c95d','2021-06-27 21:05:08.000000','b1335fac-8f7d-4f76-a525-3c737e0ada5f','','No status',0,0,0,0,'2021-06-21 21:05:46.000000','2021-06-21 21:05:48.000000','created',1,1,1),(2,'b8bbea8a-5e1b-4d5e-a890-61ef42d49da1','2021-06-15 21:04:51.000000','06235274-40ca-43be-9adc-eeb99865d7a2','6fe95f58-845c-4784-ae97-d1a738b155ce','2021-06-30 21:05:08.000000','d732d2bd-d6b5-470e-a27f-422d2e364029','','Closed',1,0,0,0,'2021-06-21 21:05:46.000000','2021-06-21 21:05:50.000000','created',1,1,1),(3,'b4068568-4bc5-405a-a92f-7d4a3080fc6b','2021-06-26 21:04:51.000000','9971c397-61a9-4b6d-aa68-38bf30123360','d23fa495-e8d0-4545-840d-62446f16fe99','2021-07-01 21:05:08.000000','591f85e9-bd96-4ed2-9041-ce6d335e79fb','','Ongoing',0,0,0,0,'2021-06-21 21:05:46.000000','2021-06-21 21:05:30.000000','created',1,1,1);
239+
/*!40000 ALTER TABLE `WorkflowCases` ENABLE KEYS */;
240+
UNLOCK TABLES;
241+
242+
--
243+
-- Table structure for table `WorkflowCaseVersions`
244+
--
245+
246+
DROP TABLE IF EXISTS `WorkflowCaseVersions`;
247+
/*!40101 SET @saved_cs_client = @@character_set_client */;
248+
/*!50503 SET character_set_client = utf8 */;
249+
CREATE TABLE `WorkflowCaseVersions` (
250+
`Id` int NOT NULL AUTO_INCREMENT,
251+
`WorkflowCaseId` int NOT NULL,
252+
`Description` longtext,
253+
`DateOfIncident` datetime(6) NOT NULL,
254+
`IncidentType` longtext,
255+
`IncidentPlace` longtext,
256+
`Deadline` datetime(6) NOT NULL,
257+
`ActionPlan` longtext,
258+
`SolvedBy` longtext,
259+
`Status` longtext,
260+
`PhotosExist` tinyint(1) NOT NULL,
261+
`MicrotingId` int NOT NULL,
262+
`CheckMicrotingUid` int NOT NULL,
263+
`CheckId` int NOT NULL,
264+
`CreatedAt` datetime(6) NOT NULL,
265+
`UpdatedAt` datetime(6) DEFAULT NULL,
266+
`WorkflowState` varchar(255) DEFAULT NULL,
267+
`CreatedByUserId` int NOT NULL,
268+
`UpdatedByUserId` int NOT NULL,
269+
`Version` int NOT NULL,
270+
PRIMARY KEY (`Id`) USING BTREE
271+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
272+
/*!40101 SET character_set_client = @saved_cs_client */;
273+
274+
--
275+
-- Dumping data for table `WorkflowCaseVersions`
276+
--
277+
278+
LOCK TABLES `WorkflowCaseVersions` WRITE;
279+
/*!40000 ALTER TABLE `WorkflowCaseVersions` DISABLE KEYS */;
280+
/*!40000 ALTER TABLE `WorkflowCaseVersions` ENABLE KEYS */;
281+
UNLOCK TABLES;
282+
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
283+
284+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
285+
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
286+
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
287+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
288+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
289+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
290+
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
291+
292+
-- Dump completed on 2021-06-22 17:44:21

0 commit comments

Comments
 (0)