serverKtor/src/main/kotlin/Users.kt

42 lines
1.3 KiB
Kotlin
Raw Normal View History

2025-03-06 21:54:58 +00:00
package com.example
import kotlinx.serialization.Serializable
2025-03-18 16:46:43 +00:00
import org.jetbrains.exposed.sql.ReferenceOption
2025-03-06 21:54:58 +00:00
import org.jetbrains.exposed.sql.Table
import org.jetbrains.exposed.sql.javatime.timestamp
import java.math.BigDecimal
import java.time.Instant
object Users : Table("users") {
val id = integer("id").autoIncrement()
val name = varchar("name", 255)
val email = varchar("email", 255).uniqueIndex()
val passwordHash = text("password_hash")
val resetToken = text("reset_token").nullable()
val createdAt = timestamp("created_at").default(Instant.now())
override val primaryKey = PrimaryKey(id)
}
object Sneakers : Table("sneakers") {
val id = integer("id").autoIncrement()
val name = varchar("name", 255)
val description = varchar("description", 255)
val cost = decimal("cost", 10, 2)
val discount = integer("discount")
val photo = varchar("photo", 255)
val gender = char("gender")
val bootSize = integer("bootsize")
2025-03-18 16:46:43 +00:00
val categoryId = integer("categoryid")
2025-03-06 21:54:58 +00:00
override val primaryKey = PrimaryKey(id)
}
2025-03-18 16:46:43 +00:00
object Categories : Table("categories") {
val id = integer("id").autoIncrement()
val name = varchar("name", 255)
val description = varchar("description", 255)
override val primaryKey = PrimaryKey(id)
}