Skip to content

Commit 393cd5c

Browse files
Merge branch 'master' into fix/debt-msg
2 parents a3d0eb8 + abbddb3 commit 393cd5c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/postgres-database/src/simcore_postgres_database/migration/versions/ecd4eadaa781_extract_workbench_column.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ def upgrade():
2323
sa.Column(
2424
"key",
2525
sa.String(),
26-
nullable=False,
26+
nullable=True,
2727
comment="Distinctive name (based on the Docker registry path)",
2828
),
2929
)
3030
op.add_column(
3131
"projects_nodes",
3232
sa.Column(
33-
"version", sa.String(), nullable=False, comment="Semantic version number"
33+
"version", sa.String(), nullable=True, comment="Semantic version number"
3434
),
3535
)
3636
op.add_column(
3737
"projects_nodes",
3838
sa.Column(
39-
"label", sa.String(), nullable=False, comment="Short name used for display"
39+
"label", sa.String(), nullable=True, comment="Short name used for display"
4040
),
4141
)
4242
op.add_column(

services/web/server/src/simcore_service_webserver/projects/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ async def list_projects( # pylint: disable=too-many-arguments,too-many-statemen
377377
# attribute filters
378378
filter_by_project_type: ProjectType | None = None,
379379
filter_by_services: list[dict] | None = None,
380-
filter_published: bool | None = False,
380+
filter_published: bool | None = None,
381381
filter_hidden: bool | None = False,
382382
filter_trashed: bool | None = False,
383383
filter_by_text: str | None = None,

0 commit comments

Comments
 (0)