* Daniel [2012-08-30 06:53]:
> I understand, but i am not documenting this for other developers or external users. This is for us, and if I learn that there is no desire for this document with GCD, then I am doing this for me. :)
Ok... It's just that I don't see this as very useful, even for us, and
it's a huge amount of work, so I though I'd warn you! The nice thing
about Django's ORM is that it frees us from having to deal with SQL
directly and instead manages everything (or as close as possible)
automatically.
So... I'm attaching the results of "show create table' for all the
tables (67 in total). Note that they were created automatically by
Django based on our models and that's why the indexes and foreign keys
have non-descriptive names like "gcd_issue_ibfk_2".
The django_* and auth_* are created by Django itself and its
authentication framework, and the two taggit_* tables by the keywords
library we're using.
The oi_*_revision correspond to the gcd_* tables and hold the changed
records in each changeset to the corresponding object (for example,
oi_series_revision contains the changes to a gcd_series record, with a
foreign key to oi_changeset).
voting_* is of course the voting app.
Alexandros