Interface HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScriptGeneration

Enclosing interface:
HibernateOrmRuntimeConfigPersistenceUnit

public static interface HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScriptGeneration
  • Method Summary

    Modifier and Type
    Method
    Description
    Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String>
    Filename or URL where the database create DDL file should be generated.
    Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String>
    Filename or URL where the database drop DDL file should be generated.
    @WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String
    Select whether the database schema DDL files are generated or not.
  • Method Details

    • generation

      @WithParentName @WithDefault("none") @WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) @WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String generation()
      Select whether the database schema DDL files are generated or not. Accepted values: `none`, `create`, `drop-and-create`, `drop`, `update`, `validate`.
    • createTarget

      Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String> createTarget()
      Filename or URL where the database create DDL file should be generated.
    • dropTarget

      Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String> dropTarget()
      Filename or URL where the database drop DDL file should be generated.