orbis/internal/persistence/migrations/001_create_initial.up.sql
kjuulh e94271d5e2
All checks were successful
continuous-integration/drone/push Build is passing
feat: enable worker process
2025-01-17 21:28:23 +01:00

5 lines
126 B
SQL

CREATE TABLE worker_register (
worker_id UUID PRIMARY KEY NOT NULL
, heart_beat TIMESTAMPTZ NOT NULL DEFAULT now()
);