Skip to content

Commit

Permalink
rename variable and secret tables to credential_variable and credenti…
Browse files Browse the repository at this point in the history
…al_secret for clarity
  • Loading branch information
arash77 committed Dec 19, 2024
1 parent 27fe524 commit ab6f860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11643,7 +11643,7 @@ class Variable(Base):
Represents a variable associated with a user for a specific service.
"""

__tablename__ = "variable"
__tablename__ = "credential_variable"

id: Mapped[int] = mapped_column(primary_key=True)
user_credential_group_id: Mapped[int] = mapped_column(
Expand All @@ -11660,7 +11660,7 @@ class Secret(Base):
Represents a secret associated with a user for a specific service.
"""

__tablename__ = "secret"
__tablename__ = "credential_secret"

id: Mapped[int] = mapped_column(primary_key=True)
user_credential_group_id: Mapped[int] = mapped_column(
Expand Down

0 comments on commit ab6f860

Please sign in to comment.