From 0433ac10875288dc965c190dc0bc5e60460abe7f Mon Sep 17 00:00:00 2001 From: Itai Shirav Date: Mon, 13 Aug 2018 08:41:02 +0300 Subject: [PATCH] docs --- docs/field_types.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/field_types.md b/docs/field_types.md index 4c447eb..016f77f 100644 --- a/docs/field_types.md +++ b/docs/field_types.md @@ -82,6 +82,8 @@ class SensorData(models.Model): data = SensorData(date=date.today(), temperatures=[25.5, 31.2, 28.7], humidity_levels=[41, 39, 66]) ``` +Note that multidimensional arrays are not supported yet by the ORM. + Working with materialized and alias fields ------------------------------------------