mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
* hacked together a example of using zoekt grpc api * provide tenant id to zoekt git indexer * update zoekt version to point to multitenant branch * pipe tenant id through header to zoekt * remove incorrect submodule reference and settings typo * update zoekt commit * remove unused yarn script * remove unused grpc client in web server * remove unneeded deps and improve tenant id log * pass tenant id when creating repo in db * add mt yarn script * add nocheckin comment to tenant id in v2 schema --------- Co-authored-by: bkellam <bshizzle1234@gmail.com>
33 lines
841 B
Text
33 lines
841 B
Text
// 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 = "sqlite"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model Repo {
|
|
id Int @id @default(autoincrement())
|
|
name String
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
indexedAt DateTime?
|
|
isFork Boolean
|
|
isArchived Boolean
|
|
metadata Json
|
|
cloneUrl String
|
|
tenantId Int
|
|
|
|
// The id of the repo in the external service
|
|
external_id String
|
|
// The type of the external service (e.g., github, gitlab, etc.)
|
|
external_codeHostType String
|
|
// The base url of the external service (e.g., https://github.com)
|
|
external_codeHostUrl String
|
|
|
|
@@unique([external_id, external_codeHostUrl])
|
|
}
|