diff options
Diffstat (limited to 'docs/ref/contrib/postgres')
| -rw-r--r-- | docs/ref/contrib/postgres/fields.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt index a06cefd162..760286dcac 100644 --- a/docs/ref/contrib/postgres/fields.txt +++ b/docs/ref/contrib/postgres/fields.txt @@ -40,9 +40,11 @@ ArrayField class ChessBoard(models.Model): board = ArrayField( ArrayField( - CharField(max_length=10, blank=True, null=True), - size=8), - size=8) + models.CharField(max_length=10, blank=True), + size=8, + ), + size=8, + ) Transformation of values between the database and the model, validation of data and configuration, and serialization are all delegated to the |
