rorm-cli 0.10.2

The cli tool for managing rorm applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Since 0.10.1
------------
- Implemented the `index` annotation
  - `make-migrations` emits the new `CreateIndex` and `DeleteIndex` operations
  - `migrate` executes them as CREATE INDEX / DROP INDEX
  - Indexes are named `<table>_<name-or-column>_idx`, the linter rejects collisions
  - Adding or removing an index no longer recreates the column
  - Projects whose existing migrations carry the annotation get a migration
    creating the indexes which were never created

Since 0.9.0
-----------
- Fixed display order of fields when renaming them
- Improved usability as a library
  - Replaced println! with tracing
  - Documented public functions
  - Replaced some anyhow errors with thiserror ones