-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
179 changed files
with
41,403 additions
and
1,929 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
# TracerStudy System | ||
[![GitHub license](https://img.shields.io/github/license/rhalp10/TracerStudy-System.svg?style=for-the-badge)](https://github.com/rhalp10/TracerStudy-System/blob/master/LICENSE) | ||
[![GitHub issues](https://img.shields.io/github/issues/rhalp10/TracerStudy-System.svg?style=for-the-badge)](https://github.com/rhalp10/TracerStudy-System/issues) | ||
[![GitHub forks](https://img.shields.io/github/forks/rhalp10/TracerStudy-System.svg?style=for-the-badge)](https://github.com/rhalp10/TracerStudy-System/network) | ||
[![GitHub forks](https://img.shields.io/badge/release-v0.9.0-blue.svg?style=for-the-badge)](https://github.com/rhalp10/TracerStudy-System/releases) | ||
|
||
## License (MIT) | ||
Copyright (c) 2017-2018 Rhalp Darren Cabrera, https://github.com/rhalp10/TracerStudy-System | ||
## Index Preview | ||
![alt text](https://github.com/rhalp10/TracerStudy-System/blob/master/screenshots/index.png "Index") | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Tracer Study System"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
## Forum Preview | ||
![alt text](https://github.com/rhalp10/TracerStudy-System/blob/master/screenshots/forum.png "Forum") | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
## Statistic Graphs Preview | ||
![alt text](https://github.com/rhalp10/TracerStudy-System/blob/master/screenshots/statistic.png "Statistic Graphs") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
ALTER TABLE survey_maxcount | ||
ADD FOREIGN KEY (survey_ownerID) REFERENCES user_account(user_ID); | ||
|
||
ALTER TABLE survey_forms | ||
ADD FOREIGN KEY (form_ownerID) REFERENCES user_account(user_ID); | ||
|
||
ALTER TABLE survey_question1 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question2 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question3 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question4 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question5 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question6 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question7 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
ALTER TABLE survey_question8 | ||
ADD FOREIGN KEY (survey_formID) REFERENCES survey_forms(form_id); | ||
|
||
|
||
ALTER TABLE user_teacher_detail | ||
ADD FOREIGN KEY (teacher_civilStat) REFERENCES marital_status(ID); | ||
ALTER TABLE user_student_detail | ||
ADD FOREIGN KEY (student_civilStat) REFERENCES marital_status(ID); | ||
ALTER TABLE user_admin_detail | ||
ADD FOREIGN KEY (admin_civilStat) REFERENCES marital_status(ID); | ||
|
||
|
||
|
||
ALTER TABLE message_thread_participant | ||
ADD FOREIGN KEY (participant_threadID) REFERENCES message_thread(thread_ID); | ||
ALTER TABLE message_thread_participant | ||
ADD FOREIGN KEY (participant_userID) REFERENCES user_account(user_ID); | ||
|
||
|
||
ALTER TABLE message_send_state | ||
ADD FOREIGN KEY (state_msgID) REFERENCES message_send(message_ID); | ||
ALTER TABLE message_send_state | ||
ADD FOREIGN KEY (state_readerID) REFERENCES user_account(user_ID); | ||
|
||
ALTER TABLE forum_comment | ||
ADD FOREIGN KEY (comment_topicID) REFERENCES forum_topic(topic_ID); | ||
ALTER TABLE forum_comment | ||
ADD FOREIGN KEY (comment_userID) REFERENCES user_account(user_ID); | ||
|
||
|
||
ALTER TABLE forum_comment_reply | ||
ADD FOREIGN KEY (comment_reply_parentID) REFERENCES forum_comment(comment_ID); | ||
|
||
ALTER TABLE forum_comment_reply | ||
ADD FOREIGN KEY (comment_reply_userID) REFERENCES user_account(user_ID); | ||
|
||
ALTER TABLE user_notification | ||
ADD FOREIGN KEY (notif_topicID) REFERENCES forum_comment(comment_ID); | ||
ALTER TABLE user_notification | ||
ADD FOREIGN KEY (notif_userID) REFERENCES user_account(user_ID); | ||
ALTER TABLE user_notification | ||
ADD FOREIGN KEY (notif_receiverID) REFERENCES user_account(user_ID); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.