Normally for a site you don't keep your db in version control because
the table definitions come from Django. Now if you have data to
prepopulate (each time you fresh clone) or need to do a backup then use
standard db backup mechanisms.
Like dumping your db to an sql backup. It's not efficient to do this in
plain text but you could if the data is small, and that could go in
version control. I suppose creating db backups is more common in service
based dbs (mysql, postgres, etc).
As for the history, versioning etc, of the db, just look at normal
backup workflows and get used to that the db data is separate from the
Django code.
Enjoy,
Alex
On 02/25/2016 11:23 AM, cortez wrote:
> Well I don't, but I'm not sure what the alternatives are. I mean what I'm
> interested in are *alternatives* to keeping it under version control, so I