You are here

public static function BlobPropertyType::schema in Entity Construction Kit (ECK) 7.3

Schema.

Overrides PropertyTypeInterface::schema

File

./eck.property_type.inc, line 308
Property types.

Class

BlobPropertyType

Code

public static function schema() {
  $schema = array(
    'description' => 'Decimal/Float/Double',
    'type' => 'blob',
    'size' => 'normal',
    'not null' => TRUE,
  );
  return $schema;
}