File size: 551 Bytes
b273c57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | -- Migration to create the tables for Cloudflare D1
CREATE TABLE IF NOT EXISTS professionals (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT,
specialty TEXT,
address TEXT,
contact TEXT,
website TEXT,
summary TEXT,
type TEXT -- 'lawyer' or 'notary'
);
CREATE TABLE IF NOT EXISTS chat_sessions (
id TEXT PRIMARY KEY,
title TEXT,
docType TEXT,
timestamp INTEGER,
messages TEXT -- JSON string
);
CREATE TABLE IF NOT EXISTS checkpoints (
id TEXT PRIMARY KEY,
name TEXT,
timestamp INTEGER,
state TEXT -- JSON string
);
|