|
123456789101112 |
- CREATE TABLE IF NOT EXISTS queries (
- id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
- title TEXT NOT NULL,
- created_at TIMESTAMPTZ NOT NULL DEFAULT now()
- );
-
- CREATE TABLE IF NOT EXISTS query_messages (
- id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
- query_id UUID REFERENCES queries(id),
- message TEXT NOT NULL,
- created_at TIMESTAMPTZ NOT NULL DEFAULT now()
- );
|