implement alter index tool

This commit is contained in:
yggverse 2024-03-20 21:06:18 +02:00
parent 44e2836de4
commit 36972cab19
2 changed files with 108 additions and 2 deletions

View file

@ -67,6 +67,17 @@ php src/cli/index/init.php [reset]
```
* `reset` - optional, reset existing index
##### Alter
Change existing index
```
php src/cli/index/alter.php {operation} {column} {type}
```
* `operation` - operation name, supported values: `add`|`drop`
* `column` - target column name
* `type` - target column type, supported values: `text`|`integer`
#### Document
##### Add