writable method

SchemaUtils writable()

Add WRITABLE modifier

Makes the column writable (can be updated).

Implementation

SchemaUtils writable() {
  _constraints.add("WRITABLE");
  return this;
}