encrypted method

SchemaUtils encrypted()

Add ENCRYPTED modifier

Suggests that the column data should be encrypted.

Implementation

SchemaUtils encrypted() {
  _constraints.add("ENCRYPTED");
  return this;
}