admin felület fejlesztése garázs, előfizeztési csomagok
This commit is contained in:
@@ -28,6 +28,10 @@ class ServiceProfile(Base):
|
||||
|
||||
id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True)
|
||||
organization_id: Mapped[Optional[int]] = mapped_column(Integer, ForeignKey("fleet.organizations.id"), unique=True)
|
||||
# P0 HYBRID VENDOR REFACTOR: Új elsődleges hivatkozás a marketplace.service_providers táblára
|
||||
service_provider_id: Mapped[Optional[int]] = mapped_column(
|
||||
Integer, ForeignKey("marketplace.service_providers.id"), nullable=True, index=True
|
||||
)
|
||||
parent_id: Mapped[Optional[int]] = mapped_column(Integer, ForeignKey("marketplace.service_profiles.id"))
|
||||
|
||||
fingerprint: Mapped[str] = mapped_column(String(255), index=True, nullable=False)
|
||||
|
||||
Reference in New Issue
Block a user