PodsField_Pick::schema PHP Method

schema() public method

Define the current field's schema for DB table storage
Since: 2.0
public schema ( array $options = null ) : array
$options array
return array
    public function schema($options = null)
    {
        $schema = false;
        $simple_tableless_objects = $this->simple_objects();
        if (in_array(pods_var(self::$type . '_object', $options), $simple_tableless_objects)) {
            $schema = 'LONGTEXT';
        }
        return $schema;
    }