chatbot-template/lib/db/migrations/0000_fair_groot.sql
2023-06-02 11:33:17 -04:00

6 lines
166 B
SQL

CREATE TABLE IF NOT EXISTS "chats" (
"id" text PRIMARY KEY NOT NULL,
"role" text NOT NULL,
"userId" text NOT NULL,
"messages" json DEFAULT '{}'::json NOT NULL
);