Skip to content

Commit

Permalink
remove bad param
Browse files Browse the repository at this point in the history
  • Loading branch information
gtfierro committed Nov 22, 2024
1 parent a9c9f28 commit c3fbed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildingmotif/database/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c3fbed4

Please sign in to comment.