Package liquibase.change
Annotation Type DatabaseChange
Annotation used by
AbstractChange
to declare ChangeMetaData
information.
This annotation should not be checked for outside AbstractChange, if any code is trying to determine the
metadata provided by this annotation, it should get it from
ChangeFactory.getChangeMetaData(Change)
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionValue to put intoChangeMetaData.getDescription()
Value to put intoChangeMetaData.getName()
int
Value to put intoChangeMetaData.getPriority()
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionString[]
Value to put intoChangeMetaData.getAppliesTo()
-
Element Details
-
name
String nameValue to put intoChangeMetaData.getName()
-
description
String descriptionValue to put intoChangeMetaData.getDescription()
-
priority
int priorityValue to put intoChangeMetaData.getPriority()
-
-
-
appliesTo
String[] appliesToValue to put intoChangeMetaData.getAppliesTo()
- Default:
- {}
-
databaseNotes
DatabaseChangeNote[] databaseNotes- Default:
- {}
-
since
String since- Default:
- ""
-