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:38:10 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f6584826db8dce64b8c174ac221b257c3fe583e6
f6584826
1 parent
080671c9
Change student_attendance table
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
DB/SQL/create_table_lecture.sql
DB/SQL/create_table_lecture.sql
View file @
f658482
...
...
@@ -15,8 +15,8 @@ FOREIGN KEY (student_id) REFERENCES student(student_id)
CREATE
TABLE
student_attendance
(
lecture_id
VARCHAR
(
20
)
NOT
NULL
,
student_id
VARCHAR
(
10
)
NOT
NULL
,
attendance_time
DATETIME
NOT
NULL
,
status
VARCHAR
(
10
)
NOT
NULL
,
attendance_time
DATETIME
DEFAULT
CURRENT_TIMESTAMP
,
FOREIGN
KEY
(
lecture_id
)
REFERENCES
lecture
(
lecture_id
),
FOREIGN
KEY
(
student_id
)
REFERENCES
student
(
student_id
)
);
...
...
Please
register
or
login
to post a comment