Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
KHY_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Graduate
2020-06-04 22:44:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
54746b52e597ae559a95e112ca971e9e343645f1
54746b52
1 parent
f6584826
Change tables
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
DB/SQL/create_table_lecture.sql
DB/SQL/create_table_lecture.sql
View file @
54746b5
...
...
@@ -16,7 +16,7 @@ CREATE TABLE student_attendance(
lecture_id
VARCHAR
(
20
)
NOT
NULL
,
student_id
VARCHAR
(
10
)
NOT
NULL
,
status
VARCHAR
(
10
)
NOT
NULL
,
attendance_time
DATETIME
DEFAULT
CURRENT_TIMESTAMP
,
timestamp
DATETIME
DEFAULT
CURRENT_TIMESTAMP
,
FOREIGN
KEY
(
lecture_id
)
REFERENCES
lecture
(
lecture_id
),
FOREIGN
KEY
(
student_id
)
REFERENCES
student
(
student_id
)
);
...
...
@@ -27,6 +27,7 @@ date DATE NOT NULL,
image
BLOB
NOT
NULL
,
width
SMALLINT
NOT
NULL
,
height
SMALLINT
NOT
NULL
,
timestamp
DATETIME
DEFAULT
CURRENT_TIMESTAMP
,
FOREIGN
KEY
(
lecture_id
)
REFERENCES
lecture
(
lecture_id
)
);
...
...
Please
register
or
login
to post a comment