== Релациско мапирање === Ознаки * Примарните клучеви се означени со __**задебелени и подвлечени букви**__ * Задолжителните атрибути се означени со **задебелени букви** * Надворешните клучеви се означени со # проследено од името на референцираната табела, обвиени со (). - ''attb#(tabela)'' * Наследување се означува со наследениот примарен клуч обвиен со "*" **''само при првото појавување на табелата, потоа се референцира нормално примарниот клуч од основната класа.''** табелата што ја референцираат. === Табели 1. **users** (__**id**__,**username**, is_activate, password, description, registered_at, sex) 2. **moderator** (__***id#(users)***__) 3. **developer** (__***id#(users)***__) 4. **project_manager** (__***id#(users)***__) 5. **thread** (__**id**__, content, __**user_id#(users)**__) 6. **likes** (__**user_id#(users)**__, __**thread_id#(thread)**__) 7. **topic_threads_moderators** (__**thread_id#(thread)**__, __***user_id#(users)***__) 8. **tag** (__**name**__) 9. **tag_threads** (__**thread_id#(thread)**__, __**tag_name#(tag)**__) 10. **topic_thread** (__***id#(thread)***__, **title**, guidelines, next_discussion_id, parent_topic_id#(thread)) 11. **topic_belongs_to_project** (__**topic_id#(thread)**__, __**project_id#(thread)**__) 12. **topic_blacklist** (__**topic_id#(thread)**__, __**user_id#(users)**__, __**moderator_id#(users)**__, __**start_date**__, end_date) 13. **project_thread** (__***id#(thread)***__, **title**, repo_url) 14. **discussion_thread** (__***id#(thread)***__, **user_id#(users)**, reply_discussion_id#(thread), topic_id#(thread)) 15. **developer_associated_with_project** (__**project_id#(thread)**__, __**developer_id#(users)**__, __**started_at**__, ended_at) 16. **permissions** (__**name**__) 17. **project_roles** (__**name**__, __**project_id#(thread)**__, description) 18. **users_project_roles** (__**user_id#(users)**__, __**project_id#(thread)**__, __**role_name#(project_roles)**__) 19. **project_roles_permissions** (__**permission_name#(permissions)**__, __**role_name#(project_roles)**__, __**project_id#(thread)**__) 20. **project_request** (__**id**__, description, **status**, **user_id#(users)**, **project_id#(thread)**) 21. **report** (__**id**__, created_at, description, status, **thread_id#(thread)**, **for_user_id#(users)**, **by_user_id#(users)**) 22. **channel** (__**name**__, description, logo_url, __***project_id#(thread)***__, **developer#(users)**) 23. **messages** (__**sent_at**__, content, __***sent_by#(users)***__, __***project_id#(thread)***__, __***channel_name#(channel)***__) == DDL скрипта за бришење и креирање на табелите [attachment:]