~ubuntuone-pqm-team/django/stable

« back to all changes in this revision

Viewing changes to django/contrib/gis/db/backends/postgis/models.py

  • Committer: Natalia
  • Date: 2016-05-03 13:51:18 UTC
  • Revision ID: natalia.bidart@ubuntu.com-20160503135118-5yv5ywnfpqv6onnc
- Imported Django 1.9.6 from released tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
class PostGISSpatialRefSys(models.Model, SpatialRefSysMixin):
52
52
    """
53
53
    The 'spatial_ref_sys' table from PostGIS. See the PostGIS
54
 
    documentaiton at Ch. 4.2.1.
 
54
    documentation at Ch. 4.2.1.
55
55
    """
56
56
    srid = models.IntegerField(primary_key=True)
57
57
    auth_name = models.CharField(max_length=256)