This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.

43 lines
1.3 KiB
Kotlin
Raw Normal View History

2022-05-04 14:31:15 -04:00
package com.wyattjmiller.data
import org.ktorm.entity.Entity
2022-07-04 19:44:10 -04:00
import org.ktorm.schema.*
import java.time.LocalDateTime
2022-05-04 14:31:15 -04:00
2022-07-04 19:44:10 -04:00
object DbRecipeTable : Table<Recipes>("recipe") {
2022-05-04 14:31:15 -04:00
val id = int("id").primaryKey().bindTo { it.id }
val name = varchar("name").bindTo { it.name }
val desc = varchar("description").bindTo { it.desc }
val ingredients = varchar("ingredients").bindTo { it.ingredients }
2022-07-04 19:44:10 -04:00
val author = int("author_id").references(DbAuthorTable) { it.author }
val createdTimestamp = datetime("created_timestamp").bindTo { it.createdTimestamp }
2022-05-04 14:31:15 -04:00
}
2022-07-04 19:44:10 -04:00
object DbAuthorTable : Table<Authors>("author") {
val id = int("id").primaryKey().bindTo { it.id }
val authorName = varchar("author_name").bindTo { it.authorName }
val user = int("user_id").references(DbUserTable) { it.user }
val createdTimestamp = datetime("created_timestamp").bindTo { it.createdTimestamp }
}
2022-05-04 14:31:15 -04:00
2022-07-04 19:44:10 -04:00
interface Recipes : Entity<Recipes> {
companion object : Entity.Factory<Recipes>()
val id: Int?
2022-05-04 14:31:15 -04:00
val name: String
val desc: String
val ingredients: String
2022-07-04 19:44:10 -04:00
val author: Authors
val createdTimestamp: LocalDateTime
}
interface Authors : Entity<Authors> {
companion object : Entity.Factory<Authors>()
val id: Int
val authorName: String
val user: Users?
val createdTimestamp: LocalDateTime
}