mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
* Add database schema for audit logs * update audit log code to read from the DB rather than mocks * use UUID not text for id * backend endpoint for writing audit logs * add stubs for provider whitelist update * wip on sending audit logs * remove oldValue field * remove references to oldValue * more * change toast * move querying to the backend * fix fetch * base URL * use a server-side function rather than endpoint for audit log creation * remove old_value * remove route for querying audit logs * don't take over date parsing * simplify, review feedback
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
|
|
export default defineConfig({
|
|
out: './src/db/migrations',
|
|
schema: './src/db/schema.ts',
|
|
dialect: 'postgresql',
|
|
dbCredentials: { url: process.env.DATABASE_URL! },
|
|
verbose: true,
|
|
strict: true,
|
|
});
|