Documentation on Database Tables
PROJECT TITLE: Regularize Expertiza DB schema
PROBLEM DESCRIPTION:
The current Expertiza database has some problems which needs to be rectified.
The current Expertiza database has issues similar to what is described below:
1. redundant record. For instance, deadline_types table has two signup and team_formation record.
2. some field name is confused. For instance, in users table assignment_id becomes parent_id and in response_maps assignment_id becomes reviewed_object_id.
The scope of our project is to rectify these problems by performing the below steps.
1. Go through the Expertiza_development database to find tables that not used any more or redundant records.
2. Write migrations to regularize the Expertiza database and also change code if necessary.
3. Make sure all existing tests are passed and change test code if necessary
4. Modify database wiki page to make it up to date
DATABASE TABLE DESCRIPTION:
Below is the old detailed description of the tables in the Expertiza DB schema.
Our Primary Job is updating the wiki and making it more informative by including all the changes in the Expertiza Db in this wiki.
STEPS TO NAVIGATE TO expertiza_development SCHEMA:
1. Open terminal.
2. Change to the "expertiza" folder using the command: $cd expertiza
3. Invoke the rails database console using the command: "$rails dbconsole" and give the password "expertiza" when prompted.
4. List the databases present in the MYSQL server using the command >show databases;
5. Move to the "expertiza_development" database using the command >use expertiza_development
6. List down the tables present in the "expertiza_development" using the command >show tables;
FLOWCHART:
FINDING REDUNDANT TABLES
STEPS:
1. Write SQL scripts to find the duplicate records. For example in the table,deadline_types a SQL query to find duplicate records is as follows.
select name from deadline_types group by name having count(*)>1;
Running this query in the SQL prompt, we find that there are two rows with the same information, hence they are redundant.
WRITING SCRIPTS TO REGULARIZE THE EXPERTIZA SCHEMA:
STEPS:
1. Write SQL scripts to delete the redundant scripts and tables.For example in the table, <deadline_types> a SQL query to delete the duplicate records are as follows.
delete from deadline_types where id not in (select * from (select min(id) from deadline_types group by name) as temp);
Running this query in the SQL prompt,it will delete the duplicate records except one.
WRITING THE DATABASE MIGRATION SCRIPTS:
STEPS:
1. Write the rails migration scripts to migrate the SQL that would delete the redundant records for certain table.
The steps to write the rails migration scripts can be explained in the below steps:
STEPS:
1.1 Open a terminal
1.2 Navigate to the expertiza folder using the command: $cd expertiza
1.3 Generate a migration script using the command in the terminal: $ rails generate migration RemoveDuplicateDeadlineTypes
1.4 Write the SQL query to be executed to delete the redundant records inside the migration script.
1.5 Save the migration script.
2. The migration scrips are present in the expertiza/db/migrate folder can be migrated using the command rails db:migrate
TEST PLAN :
STEPS:
1. Validate the schema expertiza_development
2. Rerun the sql scripts to find out the redundant records in the tables.It should return null records
3. Re validate the schema expertiza_development
- Assignments
- Deprecated Tables
- Answers
- Goldberg
- Reviewing
- Courses
- Hierarchy
- Questionnaires/Rubrics
- question_advices
- questionnaires
- questions
- quiz_question_choices
- Deprecated Tables
- Surveys
- Other Features
- Views
Back to Expertiza_documentation Main page.