Skip to content

Commit e33bfe0

Browse files
committed
Adding the missing sql create.
1 parent 26aa0a9 commit e33bfe0

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

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

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,27 @@ CREATE TABLE `AssignedSiteVersions` (
3333
`CreatedByUserId` int(11) NOT NULL,
3434
`UpdatedByUserId` int(11) NOT NULL,
3535
`Version` int(11) NOT NULL,
36+
`BreakFriday` int(11) NOT NULL DEFAULT 0,
37+
`BreakMonday` int(11) NOT NULL DEFAULT 0,
38+
`BreakSaturday` int(11) NOT NULL DEFAULT 0,
39+
`BreakSunday` int(11) NOT NULL DEFAULT 0,
40+
`BreakThursday` int(11) NOT NULL DEFAULT 0,
41+
`BreakTuesday` int(11) NOT NULL DEFAULT 0,
42+
`BreakWednesday` int(11) NOT NULL DEFAULT 0,
43+
`EndFriday` int(11) NOT NULL DEFAULT 0,
44+
`EndMonday` int(11) NOT NULL DEFAULT 0,
45+
`EndSaturday` int(11) NOT NULL DEFAULT 0,
46+
`EndSunday` int(11) NOT NULL DEFAULT 0,
47+
`EndThursday` int(11) NOT NULL DEFAULT 0,
48+
`EndTuesday` int(11) NOT NULL DEFAULT 0,
49+
`EndWednesday` int(11) NOT NULL DEFAULT 0,
50+
`StartFriday` int(11) NOT NULL DEFAULT 0,
51+
`StartMonday` int(11) NOT NULL DEFAULT 0,
52+
`StartSaturday` int(11) NOT NULL DEFAULT 0,
53+
`StartSunday` int(11) NOT NULL DEFAULT 0,
54+
`StartThursday` int(11) NOT NULL DEFAULT 0,
55+
`StartTuesday` int(11) NOT NULL DEFAULT 0,
56+
`StartWednesday` int(11) NOT NULL DEFAULT 0,
3657
PRIMARY KEY (`Id`)
3758
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
3859
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -54,6 +75,27 @@ CREATE TABLE `AssignedSites` (
5475
`CreatedByUserId` int(11) NOT NULL,
5576
`UpdatedByUserId` int(11) NOT NULL,
5677
`Version` int(11) NOT NULL,
78+
`BreakFriday` int(11) NOT NULL DEFAULT 0,
79+
`BreakMonday` int(11) NOT NULL DEFAULT 0,
80+
`BreakSaturday` int(11) NOT NULL DEFAULT 0,
81+
`BreakSunday` int(11) NOT NULL DEFAULT 0,
82+
`BreakThursday` int(11) NOT NULL DEFAULT 0,
83+
`BreakTuesday` int(11) NOT NULL DEFAULT 0,
84+
`BreakWednesday` int(11) NOT NULL DEFAULT 0,
85+
`EndFriday` int(11) NOT NULL DEFAULT 0,
86+
`EndMonday` int(11) NOT NULL DEFAULT 0,
87+
`EndSaturday` int(11) NOT NULL DEFAULT 0,
88+
`EndSunday` int(11) NOT NULL DEFAULT 0,
89+
`EndThursday` int(11) NOT NULL DEFAULT 0,
90+
`EndTuesday` int(11) NOT NULL DEFAULT 0,
91+
`EndWednesday` int(11) NOT NULL DEFAULT 0,
92+
`StartFriday` int(11) NOT NULL DEFAULT 0,
93+
`StartMonday` int(11) NOT NULL DEFAULT 0,
94+
`StartSaturday` int(11) NOT NULL DEFAULT 0,
95+
`StartSunday` int(11) NOT NULL DEFAULT 0,
96+
`StartThursday` int(11) NOT NULL DEFAULT 0,
97+
`StartTuesday` int(11) NOT NULL DEFAULT 0,
98+
`StartWednesday` int(11) NOT NULL DEFAULT 0,
5799
PRIMARY KEY (`Id`)
58100
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
59101
/*!40101 SET character_set_client = @saved_cs_client */;

0 commit comments

Comments
 (0)