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-17 15:45:39 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3aaf4258c158201d2c1c44dcdebdd1722ea9b7b1
3aaf4258
1 parent
aae80a16
Make register GUI version
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
DB/SQL/create_table_lecture.sql
register/register.py
DB/SQL/create_table_lecture.sql
View file @
3aaf425
CREATE
TABLE
lecture
(
lecture_id
VARCHAR
(
20
)
NOT
NULL
,
lecture_name
VARCHAR
(
50
),
lecture_room
VARCHAR
(
50
)
NOT
NULL
,
PRIMARY
KEY
(
lecture_id
)
);
...
...
@@ -32,7 +31,8 @@ FOREIGN KEY (lecture_id) REFERENCES lecture(lecture_id)
CREATE
TABLE
lecture_schedule
(
lecture_id
VARCHAR
(
20
)
NOT
NULL
,
lecture_day
VARCHAR
(
20
)
NOT
NULL
,
lecture_day
TINYINT
NOT
NULL
,
lecture_room
VARCHAR
(
50
)
NOT
NULL
,
lecture_start_time
TIME
NOT
NULL
,
lecture_end_time
TIME
NOT
NULL
,
FOREIGN
KEY
(
lecture_id
)
REFERENCES
lecture
(
lecture_id
)
...
...
register/register.py
View file @
3aaf425
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment