removed redundant comments from ai + removed spatial type conditions

This commit is contained in:
ArnabChatterjee20k 2025-09-03 17:58:25 +05:30
parent 8734125a73
commit 4895865a01
7 changed files with 0 additions and 26 deletions

View file

@ -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();

View file

@ -21,10 +21,6 @@ class AttributeLine extends Attribute
;
}
public array $conditions = [
'type' => 'linestring'
];
/**
* Get Name
*

View file

@ -21,10 +21,6 @@ class AttributePoint extends Attribute
;
}
public array $conditions = [
'type' => 'point'
];
/**
* Get Name
*

View file

@ -21,10 +21,6 @@ class AttributePolygon extends Attribute
;
}
public array $conditions = [
'type' => 'polygon'
];
/**
* Get Name
*

View file

@ -21,10 +21,6 @@ class ColumnLine extends Column
;
}
public array $conditions = [
'type' => 'linestring'
];
/**
* Get Name
*

View file

@ -21,10 +21,6 @@ class ColumnPoint extends Column
;
}
public array $conditions = [
'type' => 'point'
];
/**
* Get Name
*

View file

@ -21,10 +21,6 @@ class ColumnPolygon extends Column
;
}
public array $conditions = [
'type' => 'polygon'
];
/**
* Get Name
*