housing
- Used to reflect the changes that we make to the database schema into the actual database.admin
- This is the admin module where you can add admin functionalities. Register your models here.apps
- This is the application starting point where you can register different modules.migrations
- No package docstring; 5/5 modules documented0001_initial
- Initial database migration0002_alter_owner_contact_email_alter_user_contact_email
- Modifying email field0002_alter_owner_contact_email_alter_user_contact_email_and_more
- Altering field names in Owner and User Database0003_alter_interested_flat_id
- Adding foreign keys in Interested Database0004_merge_20221009_1347
- Updated housing Databasemodels
- This is the database strcuture of the models. Create your models here.serializers
- This is a serializer file to add different serializers for the database.tests
- This is a file to add test cases for different models.urls
- This is url file to add urls for respective models.views
- This is a file to add views for models.