-- 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()
);