mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 01:18:37 +00:00
removed redundant comments from ai + removed spatial type conditions
This commit is contained in:
parent
8734125a73
commit
4895865a01
7 changed files with 0 additions and 26 deletions
|
|
@ -190,8 +190,6 @@ class Create extends Action
|
|||
'orders' => $orders,
|
||||
]);
|
||||
|
||||
// Determine adapter capabilities. For TablesDB, be permissive to accept requests
|
||||
// and let the background worker enforce engine-specific constraints.
|
||||
$maxIndexLength = $dbForProject->getAdapter()->getMaxIndexLength();
|
||||
$internalIndexesKeys = $dbForProject->getAdapter()->getInternalIndexesKeys();
|
||||
$supportForIndexArray = $dbForProject->getAdapter()->getSupportForIndexArray();
|
||||
|
|
|
|||
|
|
@ -21,10 +21,6 @@ class AttributeLine extends Attribute
|
|||
;
|
||||
}
|
||||
|
||||
public array $conditions = [
|
||||
'type' => 'linestring'
|
||||
];
|
||||
|
||||
/**
|
||||
* Get Name
|
||||
*
|
||||
|
|
|
|||
|
|
@ -21,10 +21,6 @@ class AttributePoint extends Attribute
|
|||
;
|
||||
}
|
||||
|
||||
public array $conditions = [
|
||||
'type' => 'point'
|
||||
];
|
||||
|
||||
/**
|
||||
* Get Name
|
||||
*
|
||||
|
|
|
|||
|
|
@ -21,10 +21,6 @@ class AttributePolygon extends Attribute
|
|||
;
|
||||
}
|
||||
|
||||
public array $conditions = [
|
||||
'type' => 'polygon'
|
||||
];
|
||||
|
||||
/**
|
||||
* Get Name
|
||||
*
|
||||
|
|
|
|||
|
|
@ -21,10 +21,6 @@ class ColumnLine extends Column
|
|||
;
|
||||
}
|
||||
|
||||
public array $conditions = [
|
||||
'type' => 'linestring'
|
||||
];
|
||||
|
||||
/**
|
||||
* Get Name
|
||||
*
|
||||
|
|
|
|||
|
|
@ -21,10 +21,6 @@ class ColumnPoint extends Column
|
|||
;
|
||||
}
|
||||
|
||||
public array $conditions = [
|
||||
'type' => 'point'
|
||||
];
|
||||
|
||||
/**
|
||||
* Get Name
|
||||
*
|
||||
|
|
|
|||
|
|
@ -21,10 +21,6 @@ class ColumnPolygon extends Column
|
|||
;
|
||||
}
|
||||
|
||||
public array $conditions = [
|
||||
'type' => 'polygon'
|
||||
];
|
||||
|
||||
/**
|
||||
* Get Name
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue