Skip to content

Instantly share code, notes, and snippets.

View sysad-aldama's full-sized avatar
🎯
Focusing

JP Aldama sysad-aldama

🎯
Focusing
  • Quaxis Corporation for Research & Innovation
  • New York City
View GitHub Profile
@sirodoht
sirodoht / migrate-django.md
Last active July 20, 2024 15:20
How to migrate Django from SQLite to PostgreSQL

How to migrate Django from SQLite to PostgreSQL

Dump existing data:

python3 manage.py dumpdata > datadump.json

Change settings.py to Postgres backend.

Make sure you can connect on PostgreSQL. Then: