Skip to content

Commit f04db05

Browse files
add doc
1 parent d901074 commit f04db05

File tree

1 file changed

+6
-1
lines changed
  • packages/postgres-database/src/simcore_postgres_database/models

1 file changed

+6
-1
lines changed

packages/postgres-database/src/simcore_postgres_database/models/api_keys.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,12 @@
5454
doc="Identified product",
5555
),
5656
sa.Column("api_key", sa.String(), nullable=False, index=True),
57-
sa.Column("api_secret", sa.String(), nullable=False),
57+
sa.Column(
58+
"api_secret",
59+
sa.String(),
60+
nullable=False,
61+
doc="API key secret, hashed using blowfish algorithm",
62+
),
5863
sa.Column(
5964
"created",
6065
sa.DateTime(),

0 commit comments

Comments
 (0)