django-compositekey icon indicating copy to clipboard operation
django-compositekey copied to clipboard

Django Composite Multiple PrimaryKey

Results 10 django-compositekey issues
Sort by recently updated
recently updated
newest added

Hi Simone, First of all thanks a lot for the project. It has helped me a lot dealing with legacy databases. I was curious about plans to support Django 1.6...

I wanted to use compositekey in the following model: ``` python from compositekey import db class Relationship(models.Model): class Meta: db_table = 'follows' id = db.MultiFieldPK("u", "tu") u = models.IntegerField(db_column='user_id') tu...

Trying out django-compositekey on a legacy database created with inspectdb, it appears as though an attempt is made to append to the unique_together tuple: ... File "/xxx/.virtualenvs/xxx/lib/python2.7/site-packages/compositekey/db/models/fields/multiplekey.py", line 71, in...

Hi, How do you tell django that you have a select_related query? I am enforced to disable select_related queries with an "if False and ..." hack because django does not...

In postgresql some many to many auto generated try to add constraint with models not yet preparated (installed) needs, check order of pendings constraints

In the testapp example, Author.friends doesn't permit to relate an author with himself. Classic Author (with no CFP) works. Observation: MayToMany in django assume that symmetrical=True, I think there is...

The output dlelete query seem to be ok, but I think the raprpesentation string of date is different from the database quoteliteral concatenation of the datetime field. DELETE FROM "composite_basic_article"...

Wrong JOIN between a multiple column with object_id. see test composite_generic_relations class GenericRelationsTests(TestCase): def test_generic_relations(self):