Skip to content

Commit c3ac479

Browse files
committed
Fixing AssignedSites sql dump
1 parent afdde76 commit c3ac479

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,14 @@ CREATE TABLE `AssignedSiteVersions` (
167167
`UseOneMinuteIntervals` tinyint(1) NOT NULL DEFAULT 0,
168168
`UseGoogleSheetAsDefault` tinyint(1) NOT NULL DEFAULT 0,
169169
`UseOnlyPlanHours` tinyint(1) NOT NULL DEFAULT 0,
170+
`FridayPlanHours` int(11) NOT NULL DEFAULT 0,
171+
`MondayPlanHours` int(11) NOT NULL DEFAULT 0,
172+
`SaturdayPlanHours` int(11) NOT NULL DEFAULT 0,
173+
`SundayPlanHours` int(11) NOT NULL DEFAULT 0,
174+
`ThursdayPlanHours` int(11) NOT NULL DEFAULT 0,
175+
`TuesdayPlanHours` int(11) NOT NULL DEFAULT 0,
176+
`WednesdayPlanHours` int(11) NOT NULL DEFAULT 0,
177+
`UsePunchClock` tinyint(1) NOT NULL DEFAULT 0,
170178
PRIMARY KEY (`Id`)
171179
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
172180
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -322,6 +330,14 @@ CREATE TABLE `AssignedSites` (
322330
`UseOneMinuteIntervals` tinyint(1) NOT NULL DEFAULT 0,
323331
`UseGoogleSheetAsDefault` tinyint(1) NOT NULL DEFAULT 0,
324332
`UseOnlyPlanHours` tinyint(1) NOT NULL DEFAULT 0,
333+
`FridayPlanHours` int(11) NOT NULL DEFAULT 0,
334+
`MondayPlanHours` int(11) NOT NULL DEFAULT 0,
335+
`SaturdayPlanHours` int(11) NOT NULL DEFAULT 0,
336+
`SundayPlanHours` int(11) NOT NULL DEFAULT 0,
337+
`ThursdayPlanHours` int(11) NOT NULL DEFAULT 0,
338+
`TuesdayPlanHours` int(11) NOT NULL DEFAULT 0,
339+
`WednesdayPlanHours` int(11) NOT NULL DEFAULT 0,
340+
`UsePunchClock` tinyint(1) NOT NULL DEFAULT 0,
325341
PRIMARY KEY (`Id`)
326342
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
327343
/*!40101 SET character_set_client = @saved_cs_client */;

0 commit comments

Comments
 (0)