Skip to content

Migration

Amin Zamani edited this page Mar 20, 2023 · 2 revisions

Django create a database table for each models present in your app using this commands:

Makemigrations

Create a file under app_name/migrations with the database structure to create

python manage.py makemigrations 

Migrate

Will read the migrations files and create the actual database and tables

python manage.py migrate

Create superuser for authenficiation/admin panel

python manage.py createsuperuser

Python

Python Essentials 1 (PCEP)

Introduction to Python and computer programming

Data types, variables, basic I/O operations, and basic operators

Boolean values, conditional execution, loops, lists and list processing, logical and bitwise operations

Clean Code

Algorithms

Django

Django Rest Framework

API

pip

SQLAlchemy

FastAPI

Pytest

TDD

Git

Linux

Docker

Python Testing

Interview Questions

Clone this wiki locally