World.swift 224 B

1234567891011121314
  1. import Fluent
  2. import Vapor
  3. final class World: Model, Content {
  4. static let schema = "World"
  5. @ID(key: "id")
  6. var id: Int32?
  7. @Field(key: "randomnumber")
  8. var randomnumber: Int
  9. init() { }
  10. }