tern 3.1.4

Embedded database migrations in SQL or Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM postgres:16-bookworm

RUN apt update && apt install -y \
    wget \
    unzip \
    make \
    build-essential \
    postgresql-server-dev-16 && \
    rm -rf /var/lib/apt/lists/*

RUN wget https://github.com/pgpartman/pg_partman/archive/v5.2.4.zip -O v5.2.4.zip && \
    unzip v5.2.4.zip && \
    cd pg_partman-5.2.4 && \
    NO_BGW=1 make install