We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e870ad commit cd1baf9Copy full SHA for cd1baf9
packages/postgres-database/src/simcore_postgres_database/models/users.py
@@ -6,6 +6,15 @@
6
- The primary key is `id`, which is unique and sufficient for migration.
7
- Ensure foreign key references (if any) are valid in the target database.
8
- No additional changes are required; this table can be migrated as is.
9
+
10
+Users pre-registration details table
11
12
+- Stores details of users during the pre-registration phase.
13
14
+Migration strategy:
15
+- The primary key is `id`, which is unique and sufficient for migration.
16
+- Ensure foreign key references to `users` are valid in the target database.
17
+- No additional changes are required; this table can be migrated as is.
18
"""
19
20
import sqlalchemy as sa
packages/postgres-database/src/simcore_postgres_database/models/users_pre_registration_details.py
0 commit comments