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

7 lines
228 B
SQL

CREATE TABLE IF NOT EXISTS communities (
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
name text NOT NULL,
slug text UNIQUE NOT NULL,
created_at timestamptz DEFAULT now()
);