wiki:RelationalDesign

Version 1 (modified by 225144, 3 weeks ago) ( diff )

--

Релациско мапирање

Ознаки

  • Примарните клучеви се означени со задебелени и подвлечени букви
  • Задолжителните атрибути се означени со задебелени букви
  • Надворешните клучеви се означени со # проследено од името на референцираната табела, обвиени со (). - attb#(tabela)
  • Наследување се означува со наследениот примарен клуч обвиен со "*" само при првото појавување на табелата, потоа се референцира нормално примарниот клуч од основната класа.

табелата што ја референцираат.

Табели

  1. users (id,username, is_activate, password, description, registered_at, sex)
  1. moderator (*id#(users)*)
  1. developer (*id#(users)*)
  1. project_manager (*id#(users)*)
  1. thread (id, content, user_id#(users))
  1. likes (user_id#(users), thread_id#(thread))
  1. topic_threads_moderators (thread_id#(thread), *user_id#(users)*)
  1. tag (name)
  1. tag_threads (thread_id#(thread), tag_name#(tag))
  1. topic_thread (*id#(thread)*, title, guidelines, next_discussion_id, parent_topic_id#(thread))
  1. topic_belongs_to_project (topic_id#(thread), project_id#(thread))
  1. topic_blacklist (topic_id#(thread), user_id#(users), moderator_id#(users), start_date, end_date)
  1. project_thread (*id#(thread)*, title, repo_url)
  1. discussion_thread (*id#(thread)*, user_id#(users), reply_discussion_id#(thread), topic_id#(thread))
  1. developer_associated_with_project (project_id#(thread), developer_id#(users), started_at, ended_at)
  1. permissions (name)
  1. project_roles (name, project_id#(thread), description)
  1. users_project_roles (user_id#(users), project_id#(thread), role_name#(project_roles))
  1. project_roles_permissions (permission_name#(permissions), role_name#(project_roles), project_id#(thread))
  1. project_request (id, description, status, user_id#(users), project_id#(thread))
  1. report (id, created_at, description, status, thread_id#(thread), for_user_id#(users), by_user_id#(users))
  1. channel (name, description, logo_url, *project_id#(thread)*, developer#(users))
  1. messages (sent_at, content, *sent_by#(users)*, *project_id#(thread)*, *channel_name#(channel)*)

Attachments (5)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.