Newer
Older
bremer / src / main / kotlin / utils / SqlAnnotation.kt
yhornisse on 2 Jul 2023 417 bytes add project
/*
 * Copyright (c) 2023. yo-saito. All Rights Reserved.
 */

package net.piedpiper.bremer.utils.sql

@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
annotation class Table(
    val name: String
)

@Target(AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.RUNTIME)
annotation class Column(
    val name: String,
    val insertable: Boolean = true,
    val updatable: Boolean = true
)