Path: blob/master/src/packages/util/db-schema/index.ts
1447 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45export { SCHEMA } from "./types";6export type {7DBSchema,8TableSchema,9FieldSpec,10UserOrProjectQuery,11} from "./types";12export type { RenderSpec } from "./render-types";13export type { RetentionModel } from "./retention";14export { retentionModels } from "./retention";1516// The tables17import "./account-creation-actions";18import "./account-profiles";19import "./accounts";20import "./api-keys";21import "./auth";22import "./blobs";23import "./bookmarks";24import "./central-log";25import "./client-error-log";26import "./cloud-filesystems";27import "./collaborators";28import "./compute-images";29import "./compute-servers";30import "./copy-paths";31import "./crm";32import "./email-counter";33import "./file-access-log";34import "./file-use";35import "./groups";36import "./hub-servers";37import "./instances"; // probably deprecated38import "./jupyter";39import "./listings";40import "./llm";41import "./lti";42import "./mentions";43import "./messages";44import "./news";45import "./organizations";46import "./password-reset";47import "./pg-system";48import "./project-invite-tokens";49import "./project-log";50import "./projects";51import "./public-path-stars";52import "./public-paths";53import "./purchase-quotas";54import "./purchases";55import "./registration-tokens";56import "./retention";57import "./server-settings";58import "./shopping-cart-items";59import "./site-licenses";60import "./site-settings";61import "./site-whitelabeling";62import "./statements";63import "./stats";64import "./subscriptions";65import "./syncstring-schema";66import "./system-notifications"; // deprecated: use "news" with channel="system"67import "./token-actions";68import "./tracking";69import "./usage-info";70import "./vouchers";71import "./webapp-errors";7273export {74DEFAULT_FONT_SIZE,75NEW_FILENAMES,76DEFAULT_NEW_FILENAMES,77DEFAULT_COMPUTE_IMAGE,78FALLBACK_COMPUTE_IMAGE,79} from "./defaults";8081export * from "./operators";82export type { Operator } from "./operators";8384export { site_settings_conf } from "./site-defaults";8586export { client_db } from "./client-db";878889