Skip to content

Commit

Permalink
πŸ› Set key, version and label columns as temporarily nullable (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
giancarloromeo authored Jan 22, 2025
1 parent 0273e7c commit da83fb7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ def upgrade():
sa.Column(
"key",
sa.String(),
nullable=False,
nullable=True,
comment="Distinctive name (based on the Docker registry path)",
),
)
op.add_column(
"projects_nodes",
sa.Column(
"version", sa.String(), nullable=False, comment="Semantic version number"
"version", sa.String(), nullable=True, comment="Semantic version number"
),
)
op.add_column(
"projects_nodes",
sa.Column(
"label", sa.String(), nullable=False, comment="Short name used for display"
"label", sa.String(), nullable=True, comment="Short name used for display"
),
)
op.add_column(
Expand Down

0 comments on commit da83fb7

Please sign in to comment.