Skip to content

Commit ebbdca2

Browse files
committed
Fixing sql dump for time planning.
1 parent 9c3a452 commit ebbdca2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

eFormAPI/Plugins/BackendConfiguration.Pn/BackendConfiguration.Pn.Integration.Test/SQL/420_eform-angular-time-planning-plugin.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ CREATE TABLE `AssignedSiteVersions` (
175175
`TuesdayPlanHours` int(11) NOT NULL DEFAULT 0,
176176
`WednesdayPlanHours` int(11) NOT NULL DEFAULT 0,
177177
`UsePunchClock` tinyint(1) NOT NULL DEFAULT 0,
178+
`UseDetailedPauseEditing` tinyint(1) NOT NULL DEFAULT 0,
178179
PRIMARY KEY (`Id`)
179180
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
180181
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -338,6 +339,7 @@ CREATE TABLE `AssignedSites` (
338339
`TuesdayPlanHours` int(11) NOT NULL DEFAULT 0,
339340
`WednesdayPlanHours` int(11) NOT NULL DEFAULT 0,
340341
`UsePunchClock` tinyint(1) NOT NULL DEFAULT 0,
342+
`UseDetailedPauseEditing` tinyint(1) NOT NULL DEFAULT 0,
341343
PRIMARY KEY (`Id`)
342344
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
343345
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -491,6 +493,7 @@ CREATE TABLE `PlanRegistrationVersions` (
491493
`Stop4StoppedAt` datetime(6) DEFAULT NULL,
492494
`Stop5Id` int(11) NOT NULL DEFAULT 0,
493495
`Stop5StoppedAt` datetime(6) DEFAULT NULL,
496+
`PlanChangedByAdmin` tinyint(1) NOT NULL DEFAULT 0,
494497
PRIMARY KEY (`Id`)
495498
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
496499
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -626,6 +629,7 @@ CREATE TABLE `PlanRegistrations` (
626629
`Stop4StoppedAt` datetime(6) DEFAULT NULL,
627630
`Stop5Id` int(11) NOT NULL DEFAULT 0,
628631
`Stop5StoppedAt` datetime(6) DEFAULT NULL,
632+
`PlanChangedByAdmin` tinyint(1) NOT NULL DEFAULT 0,
629633
PRIMARY KEY (`Id`),
630634
KEY `IX_PlanRegistrations_MessageId` (`MessageId`),
631635
CONSTRAINT `FK_PlanRegistrations_Messages_MessageId` FOREIGN KEY (`MessageId`) REFERENCES `Messages` (`Id`)

0 commit comments

Comments
 (0)