Class DropUniqueConstraintCommand
- java.lang.Object
-
- com.atlassian.confluence.upgrade.ddl.DropUniqueConstraintCommand
-
- All Implemented Interfaces:
AlterTableCommand
public class DropUniqueConstraintCommand extends Object implements AlterTableCommand
Drops a unique constraint.
-
-
Constructor Summary
Constructors Constructor Description DropUniqueConstraintCommand(HibernateDatabaseCapabilities databaseCapabilities, String constraintName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCommandName()
String
getCommandParameters()
String
getConstraintName()
-
-
-
Constructor Detail
-
DropUniqueConstraintCommand
public DropUniqueConstraintCommand(HibernateDatabaseCapabilities databaseCapabilities, String constraintName)
- Since:
- 7.13.17
-
-
Method Detail
-
getCommandName
public String getCommandName()
- Specified by:
getCommandName
in interfaceAlterTableCommand
- Returns:
- The keyword/name of the current command for the current database (e.g. altering a column is "alter column" on PostgreSQL and "modify" on MySQL.
-
getCommandParameters
public String getCommandParameters()
- Specified by:
getCommandParameters
in interfaceAlterTableCommand
- Returns:
- The part that comes after the command name. E.g. "colname set not null" which would be after "alter column colname set not null"
-
getConstraintName
public String getConstraintName()
-
-