Support update feature and status property
- 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