Entries tagged with databases
04
Merges from the Crypt - or, how I learned to stop worrying and love SQL
0 Comments | Tags: django databases postgresql
Outlining how I merged two databases for django-powered sites using a combination of SQL, django-multidb, and pg_dump.
03
Describing Relationships: Django's ManyToMany Through
0 Comments | Tags: django python databases many-to-many
How to implement many-to-many relationships with extra fields, or, Many-to-Many Through. Covers django models and admin.
I am just beginning the process of merging two fairly large databases. This merge is complicated by the fact that there are a number of shared tables between the two databases. I've written a short python script to generate lists of tables for each dat
