Files
ajet-chat/api/resources/migrations/014-create-api-users.up.sql
2026-02-17 17:30:45 -05:00

8 lines
324 B
SQL

CREATE TABLE IF NOT EXISTS api_users (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
name text NOT NULL,
community_id uuid NOT NULL REFERENCES communities (id) ON DELETE CASCADE,
created_by uuid REFERENCES users (id),
created_at timestamptz DEFAULT now()
);