github.com/friesencr/pop/v6@v6.1.6/README.md (about)

     1  # My fork
     2  - in memory version comparisions instead of doing sql call per version
     3  - --no-schema for skipping schema dumps
     4  - .notx extension support for skipping transaction ex. migrations/20220517232343_add_columns_to_users.postgres.notx.up.sql
     5  
     6  From source#
     7  For go version 1.20 and later,
     8  
     9  Without sqlite 3 support:
    10  ```
    11  go install github.com/friesencr/pop/v6/soda@latest
    12  ```
    13  With sqlite 3 support (requires GCC or equivalent C compiler):
    14  ```
    15  go install -tags sqlite github.com/friesencr/pop/v6/soda@latest
    16  ```
    17  Please visit [http://gobuffalo.io](https://gobuffalo.io/docs/db/getting-started) for the latest documentation, examples, and more.