rustio-admin-cli 0.27.4

Command-line tools for rustio-admin: project scaffolding, migrations, user management.
1
2
3
4
5
6
7
8
9
-- Generated by `rustio-admin startapp {{name}}`. Customise freely before
-- running `rustio-admin migrate apply` — once a migration has been applied
-- editing this file no-ops; create a new numbered file instead.

CREATE TABLE {{table}} (
    id          BIGSERIAL    PRIMARY KEY,
    name        TEXT         NOT NULL,
    created_at  TIMESTAMPTZ  NOT NULL DEFAULT NOW()
);