Skip to main content

Provides a base model with rudimentary composite PK abilities.

Project description

A Django application that provides a CompositePKModel, allowing for basic retrieval and saving of models with composite keys.

It is limited to the above tasks, and any use of the model past this is not guaranteed to work.

Example usage

A model with composite PK should look something like this:

from composite_pk import composite

class Lot(composite.CompositePKModel):
    auction = models.ForeignKey(Auction, primary_key=True)
    lot_number = models.IntegerField(primary_key=True)
    objects = composite.CompositePKManager()

So it must:

  • subclass the CompositePKModel,

  • have two or more fields which set the primary_key attribute to True, and

  • use the CompositePKManager as the initial manager.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-compositepk-1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page