Skip to content

Commit

Permalink
Organizations initial commit - review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneLightsOn committed Jun 19, 2024
1 parent 591fbb4 commit 277e90b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/backend/database_models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,6 @@

from backend.database_models.base import Base

# user_organization_association = Table(
# "user_organization",
# Base.metadata,
# Column("user_id", ForeignKey("users.id", ondelete="CASCADE"), primary_key=True),
# Column(
# "organization_id",
# ForeignKey("organizations.id", ondelete="CASCADE"),
# primary_key=True,
# ),
# )


class UserOrganizationAssociation(Base):
__tablename__ = "user_organization"
Expand Down

0 comments on commit 277e90b

Please sign in to comment.