budibase/packages/server/src/sdk/app/tables/index.ts

18 lines
400 B
TypeScript
Raw Normal View History

2023-09-08 17:42:54 +02:00
import { populateExternalTableSchemas } from "./validation"
import * as getters from "./getters"
2024-10-09 12:58:10 +02:00
import * as create from "./create"
import * as updates from "./update"
import * as utils from "./utils"
2023-10-23 10:49:57 +02:00
import { migrate } from "./migration"
import * as sqs from "./internal/sqs"
2023-09-08 17:42:54 +02:00
export default {
2023-06-27 13:24:50 +02:00
populateExternalTableSchemas,
2024-10-09 12:58:10 +02:00
...create,
...updates,
...getters,
...utils,
2023-10-23 10:49:57 +02:00
migrate,
sqs,
}