public static function UUIDPropertyType::schema in Entity Construction Kit (ECK) 7.3
Schema.
Overrides FixedSizeTextPropertyType::schema
File
- ./
eck.property_type.inc, line 399 - Property types.
Class
Code
public static function schema() {
$schema = parent::schema();
$schema['description'] = 'Universally Unique Identifier';
$schema['length'] = 16;
return $schema;
}