so6 0.2.0

Framework for manage background data migration with PostgreSQL
Documentation
# So6

Ease background data migration for Postgreql databases.

## Status
This project is in very early state and currently only plays with indexes

## Local tests
### Initialise test environment
```bash
podman kube play pod-so6.yaml
```
or start test environment if it exists
```bash
podman pod start so6
```
### Set PosgreSQL services file

Add the follozing service in .pg_service.conf
```conf
[so6]
host=localhost
port=5434
dbname=so6
user=so6
password=so6
```

### Run integration tests
```bash
PGSERVICE=so6 cargo test
```