pgroll/pkg/state
Andrew Farries 908485f7bb
Include key columns for an index in the internal schema representation (#248)
In the internal schema representation, include the key columns on which
an index is defined in the details for an index. With the new `columns`
field, the representation for an index now looks like:

```json
"indexes": {
    "_pgroll_new_products_pkey": {
        "name": "_pgroll_new_products_pkey",
        "unique": true,
        "columns": [
            "id"
        ]
    }
}
```
2024-01-24 16:28:35 +00:00
..
errors.go License check in github actions (#123) 2023-09-22 10:31:49 +00:00
state_test.go Include key columns for an index in the internal schema representation (#248) 2024-01-24 16:28:35 +00:00
state.go Include key columns for an index in the internal schema representation (#248) 2024-01-24 16:28:35 +00:00
status.go Move logic for the status command into the state and migrations packages (#205) 2023-11-22 12:36:54 +00:00