We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 983ae3d commit 5953ba9Copy full SHA for 5953ba9
packages/postgres-database/src/simcore_postgres_database/models/funcapi_functions_table.py
@@ -70,5 +70,20 @@
70
nullable=True,
71
doc="Default inputs of the function",
72
),
73
+ sa.Column(
74
+ "created",
75
+ sa.DateTime,
76
+ nullable=False,
77
+ server_default=sa.func.now(),
78
+ doc="Creation timestamp of the function",
79
+ ),
80
81
+ "modified",
82
83
84
85
+ onupdate=sa.func.now(),
86
+ doc="Last update timestamp of the function",
87
88
sa.PrimaryKeyConstraint("uuid", name="funcapi_functions_pk"),
89
)
0 commit comments