feat: Sets up ci workflows

This commit is contained in:
2025-01-24 20:19:43 -05:00
parent 000f8ce16b
commit d1e2f37629
16 changed files with 200 additions and 73 deletions

View File

@@ -125,10 +125,10 @@ final class VendorBranchModel: Model, @unchecked Sendable {
@Field(key: .string(FieldKey.name))
var name: String
@Timestamp(key: .string(FieldKey.createdAt), on: .create)
@Timestamp(key: .string(FieldKey.createdAt), on: .create, format: .iso8601)
var createdAt: Date?
@Timestamp(key: .string(FieldKey.updatedAt), on: .update)
@Timestamp(key: .string(FieldKey.updatedAt), on: .update, format: .iso8601)
var updatedAt: Date?
@Parent(key: .string(FieldKey.vendorID))