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

@@ -109,10 +109,10 @@ final class VendorModel: Model, @unchecked Sendable {
@Field(key: "name")
var name: String
@Timestamp(key: "created_at", on: .create)
@Timestamp(key: "created_at", on: .create, format: .iso8601)
var createdAt: Date?
@Timestamp(key: "updated_at", on: .update)
@Timestamp(key: "updated_at", on: .update, format: .iso8601)
var updatedAt: Date?
@Children(for: \.$vendor)