Релациско мапирање
Ознаки
- Примарните клучеви се означени со задебелени и подвлечени букви
- Задолжителните атрибути се означени со задебелени букви
- Надворешните клучеви се означени со # проследено од името на референцираната табела, обвиени со (). - attb#(tabela)
- Наследување се означува со наследениот примарен клуч обвиен со "*" само при првото појавување на табелата, потоа во следни појавувања се референцира примарниот клуч од основната класа.
Табели
- users (id,username, is_activate, password, description, registered_at, sex)
- moderator (*id#(users)*)
- developer (*id#(users)*)
- project_owner (*id#(users)*)
- thread (id, content, user_id#(users))
- likes (user_id#(users), thread_id#(thread))
- topic_threads_moderators (thread_id#(thread), *user_id#(users)*)
- tag (name)
- tag_threads (thread_id#(thread), tag_name#(tag))
- topic_thread (*id#(thread)*, title, guidelines, parent_topic_id#(thread))
- topic_belongs_to_project (topic_id#(thread), project_id#(thread))
- blacklisted_user (topic_id#(thread), user_id#(users), moderator_id#(users), start_date, end_date, reason)
- project_thread (*id#(thread)*, title, repo_url)
- discussion_thread (*id#(thread)*, user_id#(users), reply_discussion_id#(thread), topic_id#(thread))
- developer_associated_with_project (project_id#(thread), developer_id#(users), started_at, ended_at)
- permissions (name)
- project_roles (name, project_id#(thread), description)
- users_project_roles (user_id#(users), project_id#(thread), role_name#(project_roles))
- project_roles_permissions (permission_name#(permissions), role_name#(project_roles), project_id#(thread))
- project_request (id, description, status, user_id#(users), project_id#(thread))
- report (id, created_at, description, status, thread_id#(thread), for_user_id#(users), by_user_id#(users))
- channel (name, description, *project_id#(thread)*, developer#(users))
- messages (sent_at, content, *sent_by#(users)*, *project_id#(thread)*, *channel_name#(channel)*)
DDL скрипта за бришење и креирање на табелите
DML скрипта за полнење на табелите за податоци
Релационен дијаграм
Last modified
2 weeks ago
Last modified on 12/29/24 01:39:51
Attachments (5)
- DDL_diagram.png (252.8 KB ) - added by 3 weeks ago.
- buildboard-ddl.sql (7.1 KB ) - added by 3 weeks ago.
- buildboard-ddl.2.sql (10.0 KB ) - added by 2 weeks ago.
- test-data.sql (3.1 KB ) - added by 2 weeks ago.
- ddl-diagram-cmp.png (78.6 KB ) - added by 2 weeks ago.
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.