feat(frontend): integrate Prisma and reports API/pages chore(config): add data_sources.yaml; update analysis-config.json docs: add 2025-11-03 dev log; update user guide scripts: enhance dev.sh; add tushare_legacy_client deps: update backend and frontend dependencies
20 lines
442 B
Plaintext
20 lines
442 B
Plaintext
// This is your Prisma schema file,
|
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
shadowDatabaseUrl = env("PRISMA_MIGRATE_SHADOW_DATABASE_URL")
|
|
}
|
|
|
|
model Report {
|
|
id String @id @default(uuid())
|
|
symbol String
|
|
content Json
|
|
createdAt DateTime @default(now())
|
|
}
|