rustio-admin-cli 0.27.1

Command-line tools for rustio-admin: project scaffolding, migrations, user management.
1
2
3
4
5
6
7
-- 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{{column_decls}}
);