/* * 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 )