Hackathons-Canada / HackathonsCanada

A simple website to connect humans to hackathons
https://hackathonscanada.com
1 stars 1 forks source link

Dump database to fixtures #5

Open Bobliuuu opened 1 week ago

Bobliuuu commented 1 week ago

Requires #4 as a prerequisite

JasonLovesDoggo commented 6 days ago

wym by dump db? which db?

Bobliuuu commented 6 days ago

Dump the SQLite DB into Django (https://docs.djangoproject.com/en/5.0/ref/django-admin/#dumpdata) But since we don't wanna do this a lot the duplicates should be removed first.

JasonLovesDoggo commented 6 days ago

Dump the SQLite DB into Django (https://docs.djangoproject.com/en/5.0/ref/django-admin/#dumpdata) But since we don't wanna do this a lot the duplicates should be removed first.

Ah I see your mistake, dumpdata doesn't import TO Django it exports the current DB into a cross-compatible format called a fixture (which you can specify to be json,xml,yml,ect...)

loaddata takes those fixtures and imports them into the DB