Skip to content

Commit

Permalink
[#128] Updated SimpleEntity to make the stalker_version column nu…
Browse files Browse the repository at this point in the history
…llable and `stalker_version` attribute to be optional as before.
  • Loading branch information
eoyilmaz committed Dec 11, 2024
1 parent 964910a commit 78b4605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stalker/models/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class attribute to control auto naming behavior.
String(64), nullable=True, default=""
)

stalker_version: Mapped[str] = mapped_column(String(256))
stalker_version: Mapped[Optional[str]] = mapped_column(String(256))

def __init__(
self,
Expand Down

0 comments on commit 78b4605

Please sign in to comment.