UuidColumn constructor

UuidColumn(
  1. String name, {
  2. String? ref,
  3. bool isKey = false,
})

Implementation

UuidColumn(super.name, {super.ref, super.isKey})
    : super(
        ddl: 'UUID',
        type: Type.uuid,
      );