ldbc.codegen.model.Database.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ldbc-codegen_3 Show documentation
Show all versions of ldbc-codegen_3 Show documentation
Project to generate code from Sql
/**
* Copyright (c) 2023-2024 by Takahiko Tominaga
* This software is licensed under the MIT License (MIT).
* For more information see LICENSE or https://opensource.org/licenses/MIT
*/
package ldbc.codegen.model
object Database:
case class CreateStatement(
name: String,
charset: Option[String],
collate: Option[String],
encryption: Option["Y" | "N"]
)
case class DropStatement(name: String)
case class UseStatement(name: String)