Skip to content

Support update feature and status property

Compare
Choose a tag to compare
@jjrom jjrom released this 30 Jun 06:49
· 1118 commits to master since this release
  • Add support for update feature through PUT /collections/{collection}/{feature} endpoint
  • Add support for update feature status through PUT /collections/{collection}/{feature}/status endpoint

[WARNING] This is a breaking change ! Existing collection features tables must be updated with the following SQL command

ALTER TABLE _${collectionName}.features ADD COLUMN status TEXT DEFAULT 0;
CREATE INDEX _${collectionName}_features_status_idx ON _sentinel1.features USING btree(status);

Where ${collectionName} should be the name of the collection in lower case