Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmpt-370-group-project-group26
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eyan Cunningham (esc568)
cmpt-370-group-project-group26
Commits
82d7ff92
Commit
82d7ff92
authored
2 years ago
by
Rafi
Browse files
Options
Downloads
Patches
Plain Diff
Changed the default end time 2330.
parent
103ea212
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ScheduleApp.sql
+8
-8
8 additions, 8 deletions
ScheduleApp.sql
with
8 additions
and
8 deletions
ScheduleApp.sql
+
8
−
8
View file @
82d7ff92
...
@@ -43,19 +43,19 @@ create table Availabilities(
...
@@ -43,19 +43,19 @@ create table Availabilities(
ID
int
not
null
auto_increment
unique
,
ID
int
not
null
auto_increment
unique
,
employeeID
int
unique
,
employeeID
int
unique
,
sundayStart
int
default
0
,
sundayStart
int
default
0
,
sundayEnd
int
default
23
59
,
sundayEnd
int
default
23
30
,
mondayStart
int
default
0
,
mondayStart
int
default
0
,
mondayEnd
int
default
23
59
,
mondayEnd
int
default
23
30
,
tuesdayStart
int
default
0
,
tuesdayStart
int
default
0
,
tuesdayEnd
int
default
23
59
,
tuesdayEnd
int
default
23
30
,
wednesdayStart
int
default
0
,
wednesdayStart
int
default
0
,
wednesdayEnd
int
default
23
59
,
wednesdayEnd
int
default
23
30
,
thursdayStart
int
default
0
,
thursdayStart
int
default
0
,
thursdayEnd
int
default
23
59
,
thursdayEnd
int
default
23
30
,
fridayStart
int
default
0
,
fridayStart
int
default
0
,
fridayEnd
int
default
23
59
,
fridayEnd
int
default
23
30
,
saturdayStart
int
default
0
,
saturdayStart
int
default
0
,
saturdayEnd
int
default
23
59
,
saturdayEnd
int
default
23
30
,
foreign
key
(
employeeID
)
references
Employees
(
employee_ID
)
foreign
key
(
employeeID
)
references
Employees
(
employee_ID
)
);
);
...
@@ -70,7 +70,7 @@ insert into Positions (position, wage) values ("dishwasher", 12.50);
...
@@ -70,7 +70,7 @@ insert into Positions (position, wage) values ("dishwasher", 12.50);
delete
from
Positions
where
position
=
'dishwasher'
;
delete
from
Positions
where
position
=
'dishwasher'
;
select
*
from
Pos
iti
on
s
;
select
*
from
Availabil
iti
e
s
;
select
*
from
Employees
;
select
*
from
Employees
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment