Package io.quarkus.hibernate.orm.runtime
Interface HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScriptGeneration
- Enclosing interface:
HibernateOrmRuntimeConfigPersistenceUnit
public static interface HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScriptGeneration
-
Method Summary
Modifier and TypeMethodDescriptionFilename or URL where the database create DDL file should be generated.Filename or URL where the database drop DDL file should be generated.Select whether the database schema DDL files are generated or not.
-
Method Details
-
generation
@WithParentName @WithDefault("none") HibernateOrmRuntimeConfigPersistenceUnit.HibernateGenerationStrategy 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.
-