mirror of
https://github.com/django/django.git
synced 2024-11-24 02:47:35 +01:00
097e3a70c1
Black 23.1.0 is released which, as the first release of the year, introduces the 2023 stable style. This incorporates most of last year's preview style. https://github.com/psf/black/releases/tag/23.1.0
24 lines
669 B
Python
24 lines
669 B
Python
from django.contrib.gis.db import models
|
|
|
|
|
|
class AllOGRFields(models.Model):
|
|
f_decimal = models.FloatField()
|
|
f_float = models.FloatField()
|
|
f_int = models.IntegerField()
|
|
f_char = models.CharField(max_length=10)
|
|
f_date = models.DateField()
|
|
f_datetime = models.DateTimeField()
|
|
f_time = models.TimeField()
|
|
geom = models.PolygonField()
|
|
point = models.PointField()
|
|
|
|
|
|
class Fields3D(models.Model):
|
|
point = models.PointField(dim=3)
|
|
pointg = models.PointField(dim=3, geography=True)
|
|
line = models.LineStringField(dim=3)
|
|
poly = models.PolygonField(dim=3)
|
|
|
|
class Meta:
|
|
required_db_features = {"supports_3d_storage"}
|