You are here

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

Schema.

Overrides PropertyTypeInterface::schema

File

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

Class

DateTimePropertyType

Code

public static function schema() {
  $schema = array(
    'description' => 'Date/Time',
    'type' => 'datetime',
    'not null' => TRUE,
    'default' => 0,
  );
  return $schema;
}