feat: Store timestamps as strings in the database, which was causing postgres errors.
Some checks failed
CI / Linux Tests (pull_request) Failing after 5m46s

This commit is contained in:
2026-02-11 16:44:39 -05:00
parent f385fcdc28
commit fe06508405
12 changed files with 54 additions and 20 deletions

View File

@@ -90,8 +90,8 @@ extension EquivalentLength {
.field("type", .string, .required)
.field("straightLengths", .array(of: .int))
.field("groups", .data)
.field("createdAt", .datetime)
.field("updatedAt", .datetime)
.field("createdAt", .string)
.field("updatedAt", .string)
.field(
"projectID", .uuid, .required, .references(ProjectModel.schema, "id", onDelete: .cascade)
)