cs-models 0.0.694__py3-none-any.whl → 0.0.695__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cs-models might be problematic. Click here for more details.
- cs_models/resources/SmartGrid/models.py +5 -0
- cs_models/resources/SmartGrid/schemas.py +1 -0
- {cs_models-0.0.694.dist-info → cs_models-0.0.695.dist-info}/METADATA +1 -1
- {cs_models-0.0.694.dist-info → cs_models-0.0.695.dist-info}/RECORD +6 -6
- {cs_models-0.0.694.dist-info → cs_models-0.0.695.dist-info}/WHEEL +0 -0
- {cs_models-0.0.694.dist-info → cs_models-0.0.695.dist-info}/top_level.txt +0 -0
|
@@ -12,6 +12,11 @@ class SmartGridModel(Base):
|
|
|
12
12
|
|
|
13
13
|
id = Column(Integer, primary_key=True)
|
|
14
14
|
user_id = Column(String(128), nullable=False)
|
|
15
|
+
workbook_id = Column(
|
|
16
|
+
Integer,
|
|
17
|
+
ForeignKey('workbooks.id'),
|
|
18
|
+
nullable=False,
|
|
19
|
+
)
|
|
15
20
|
table_info = Column(Text, nullable=True)
|
|
16
21
|
is_deleted = Column(Boolean, nullable=True)
|
|
17
22
|
updated_at = Column(
|
|
@@ -7,6 +7,7 @@ class SmartGridResourceSchema(Schema):
|
|
|
7
7
|
|
|
8
8
|
id = fields.Integer(dump_only=True)
|
|
9
9
|
user_id = fields.String(required=True, validate=not_blank)
|
|
10
|
+
workbook_id = fields.Integer(required=True)
|
|
10
11
|
table_info = fields.String(allow_none=True)
|
|
11
12
|
is_deleted = fields.Boolean(allow_none=True)
|
|
12
13
|
cells = fields.Nested(
|
|
@@ -870,8 +870,8 @@ cs_models/resources/SearchLink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
870
870
|
cs_models/resources/SearchLink/models.py,sha256=l1tPCSKHK7Wq1OUWFH72NYncEt6Q3bR0P6ii7YKoxCM,729
|
|
871
871
|
cs_models/resources/SearchLink/schemas.py,sha256=A8Y6LRgw7MHs9bihf0gZPfqp6KDm0Z8k6PJSL9WVxsc,448
|
|
872
872
|
cs_models/resources/SmartGrid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
873
|
-
cs_models/resources/SmartGrid/models.py,sha256=
|
|
874
|
-
cs_models/resources/SmartGrid/schemas.py,sha256=
|
|
873
|
+
cs_models/resources/SmartGrid/models.py,sha256=eWcaU6Rri0toRJlqTr9I7iC_riCQjf8Tj965jNxzjvk,1012
|
|
874
|
+
cs_models/resources/SmartGrid/schemas.py,sha256=ZuTTtAMZm_0RpFaRRM4sd7vW48uVcz9FTc2VD-vCnL4,663
|
|
875
875
|
cs_models/resources/SmartGridCell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
876
876
|
cs_models/resources/SmartGridCell/models.py,sha256=vPXX8YaVPMjq6IgGhgAy46EnmbFgGCaHlZfNEUd9hq4,1196
|
|
877
877
|
cs_models/resources/SmartGridCell/schemas.py,sha256=l6kljC4vUd1IoTwezM8UEQWnPoaJru8MqqPKlfyPdNw,766
|
|
@@ -1147,7 +1147,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1147
1147
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1148
1148
|
cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
|
|
1149
1149
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1150
|
-
cs_models-0.0.
|
|
1151
|
-
cs_models-0.0.
|
|
1152
|
-
cs_models-0.0.
|
|
1153
|
-
cs_models-0.0.
|
|
1150
|
+
cs_models-0.0.695.dist-info/METADATA,sha256=ocyPaxZlbmaxDGwrrsB_df8PEvhOKC3uJs_013IWQ8c,792
|
|
1151
|
+
cs_models-0.0.695.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
1152
|
+
cs_models-0.0.695.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1153
|
+
cs_models-0.0.695.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|