[#6472] H2 supports this too

This commit is contained in:
lukaseder 2017-07-31 20:10:19 +02:00
parent d83db4d52b
commit aeddb886f7

View File

@ -84,12 +84,12 @@ public interface AlterTableAlterStep<T> {
/**
* Make the column <code>NOT NULL</code>.
*/
@Support({ POSTGRES })
@Support({ H2, POSTGRES })
AlterTableFinalStep setNotNull();
/**
* Make the column nullable.
*/
@Support({ POSTGRES })
@Support({ H2, POSTGRES })
AlterTableFinalStep dropNotNull();
}