Changes between Initial Version and Version 1 of RelationalDesign


Ignore:
Timestamp:
12/27/24 01:31:48 (3 weeks ago)
Author:
225144
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RelationalDesign

    v1 v1  
     1== Релациско мапирање
     2=== Ознаки
     3
     4    * Примарните клучеви се означени со __**задебелени и подвлечени букви**__
     5    * Задолжителните атрибути се означени со **задебелени букви**
     6    * Надворешните клучеви се означени со # проследено од името на референцираната табела, обвиени со (). - ''attb#(tabela)''
     7    * Наследување се означува со наследениот примарен клуч обвиен со "*"  **''само при првото појавување на табелата, потоа се референцира нормално примарниот клуч од основната класа.''**
     8 
     9табелата што ја референцираат.
     10
     11=== Табели
     12
     131. **users** (__**id**__,**username**, is_activate, password, description, registered_at, sex) 
     14
     152. **moderator** (__***id#(users)***__) 
     16
     173. **developer** (__***id#(users)***__) 
     18
     194. **project_manager** (__***id#(users)***__) 
     20
     215. **thread** (__**id**__, content, __**user_id#(users)**__) 
     22
     236. **likes** (__**user_id#(users)**__, __**thread_id#(thread)**__) 
     24
     257. **topic_threads_moderators** (__**thread_id#(thread)**__, __***user_id#(users)***__) 
     26
     278. **tag** (__**name**__) 
     28
     299. **tag_threads** (__**thread_id#(thread)**__, __**tag_name#(tag)**__) 
     30
     3110. **topic_thread** (__***id#(thread)***__, **title**, guidelines, next_discussion_id, parent_topic_id#(thread)) 
     32
     3311. **topic_belongs_to_project** (__**topic_id#(thread)**__, __**project_id#(thread)**__) 
     34
     3512. **topic_blacklist** (__**topic_id#(thread)**__, __**user_id#(users)**__, __**moderator_id#(users)**__, __**start_date**__, end_date) 
     36
     3713. **project_thread** (__***id#(thread)***__, **title**, repo_url) 
     38
     3914. **discussion_thread** (__***id#(thread)***__, **user_id#(users)**, reply_discussion_id#(thread), topic_id#(thread)) 
     40
     4115. **developer_associated_with_project** (__**project_id#(thread)**__, __**developer_id#(users)**__, __**started_at**__, ended_at) 
     42
     4316. **permissions** (__**name**__) 
     44
     4517. **project_roles** (__**name**__, __**project_id#(thread)**__, description) 
     46
     4718. **users_project_roles** (__**user_id#(users)**__, __**project_id#(thread)**__, __**role_name#(project_roles)**__) 
     48
     4919. **project_roles_permissions** (__**permission_name#(permissions)**__, __**role_name#(project_roles)**__, __**project_id#(thread)**__) 
     50
     5120. **project_request** (__**id**__, description, **status**, **user_id#(users)**, **project_id#(thread)**) 
     52
     5321. **report** (__**id**__, created_at, description, status, **thread_id#(thread)**, **for_user_id#(users)**, **by_user_id#(users)**) 
     54
     5522. **channel** (__**name**__, description, logo_url, __***project_id#(thread)***__, **developer#(users)**) 
     56
     5723. **messages** (__**sent_at**__, content, __***sent_by#(users)***__, __***project_id#(thread)***__, __***channel_name#(channel)***__)