From c3fbed46bbbc1f78097ef85e9580813a8eeef36c Mon Sep 17 00:00:00 2001 From: Gabe Fierro Date: Fri, 22 Nov 2024 11:14:48 -0700 Subject: [PATCH] remove bad param --- buildingmotif/database/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildingmotif/database/tables.py b/buildingmotif/database/tables.py index 9ee38293..96ea0b6a 100644 --- a/buildingmotif/database/tables.py +++ b/buildingmotif/database/tables.py @@ -58,7 +58,7 @@ class DBLibrary(Base): ) shape_collection_id = Column( - Integer, ForeignKey("shape_collection.id", ondelete="CASCADE"), nullable=False, ondelete="CASCADE" + Integer, ForeignKey("shape_collection.id", ondelete="CASCADE"), nullable=False ) shape_collection: DBShapeCollection = relationship( "DBShapeCollection",