|
- //
- // mdlInspection.swift
- //
- //
- // Created by Michiel Carman on 2/16/24.
- //
-
-
- import Fluent
- import Vapor
- import Foundation
- import FluentKit
-
- final class mdlInspection: Model, Content {
- static let schema = "inspection"
-
- @ID(custom: "id", generatedBy: .database) var id: Int?
-
- @Parent(key: "workOrderSegmentId") var segment: mdlWorkOrderSegment
- @Parent(key: "inspectionLevelId") var level: mdlInspectionLevel
- @Field(key: "name") var name: String?
- @Field(key: "description") var description: String?
- @Field(key: "interval") var interval: String?
-
- @Children(for: \.$inspection) var categories: [mdlInspectionCategory]
- @Children(for: \.$inspection) var notes: [mdlNote]
-
- @Timestamp(key: "createDate", on: .create) var createdate: Date?
- @Field(key: "createUserId") var createuserid: Int?
- @Timestamp(key: "updateDate", on: .update) var updatedate: Date?
- @Field(key: "updateUserId") var updateuserid: Int?
-
- init() { }
-
- init(id: Int? = nil,
- name: String? = nil,
- description: String? = nil,
- segmentid: Int,
- levelid: Int,
- createuserid: Int? = nil,
- updateuserid: Int? = nil
- ) {
- self.id = id
- self.name = name
- self.description = description
- self.$segment.$id.value = segmentid
- self.$level.$id.value = levelid
- self.createuserid = createuserid
- self.updateuserid = updateuserid
- }
- }
- extension mdlInspection{
- struct Create: AsyncMigration {
- func prepare(on database: Database) async throws {
- try await database.schema("inspection")
- .field("id", .int, .identifier(auto: true))
- .field("name", .string)
- .field("description", .string)
- .field("workOrderSegmentId", .int, .references("workOrderSegment", "id"))
- .field("inspectionLevelId", .int, .references("inspectionLevel", "id"))
- .field("createDate", .datetime)
- .field("createUserId", .int)
- .field("updateDate", .datetime)
- .field("updateUserId", .int)
- .create()
- }
-
- func revert(on database: Database) async throws {
- try await database.schema("inspection").delete()
- }
- }
- }
|