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

@@ -127,10 +127,10 @@ final class EmployeeModel: Model, @unchecked Sendable {
@Field(key: "is_active")
var active: Bool
@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?
init() {}