You are here

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

Schema.

Overrides PropertyTypeInterface::schema

File

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

Class

LongTextPropertyType

Code

public static function schema() {
  $schema = array(
    'description' => 'Long Text (longer than 8000 characters)',
    'type' => 'text',
    'length' => 255,
    'not null' => TRUE,
    // Relevant only to: varchar, char, and text.
    'length' => 255,
  );
  return $schema;
}