You are here

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

Schema.

Overrides IntegerPropertyType::schema

File

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

Class

PositiveIntegerPropertyType

Code

public static function schema() {
  $schema = parent::schema();
  $schema['description'] = "Positive Integer";
  $schema['unsigned'] = TRUE;
  return $schema;
}