-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtable.go
51 lines (35 loc) · 1.53 KB
/
table.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// SPDX-License-Identifier: Apache-2.0
package constants
// Database tables.
const (
// TableBuild defines the table type for the database builds table.
TableBuild = "builds"
// TableBuildExecutable defines the table type for the database build_executables table.
TableBuildExecutable = "build_executables"
// TableDashboard defines the table type for the database dashboards table.
TableDashboard = "dashboards"
// TableDeployment defines the table type for the database deployments table.
TableDeployment = "deployments"
// TableHook defines the table type for the database hooks table.
TableHook = "hooks"
// TableJWK defines the table type for the database jwks table.
TableJWK = "jwks"
// TableLog defines the table type for the database logs table.
TableLog = "logs"
// TablePipeline defines the table type for the database pipelines table.
TablePipeline = "pipelines"
// TableRepo defines the table type for the database repos table.
TableRepo = "repos"
// TableSchedule defines the table type for the database schedules table.
TableSchedule = "schedules"
// TableSecret defines the table type for the database secrets table.
TableSecret = "secrets"
// TableService defines the table type for the database services table.
TableService = "services"
// TableStep defines the table type for the database steps table.
TableStep = "steps"
// TableUser defines the table type for the database users table.
TableUser = "users"
// TableWorker defines the table type for the database workers table.
TableWorker = "workers"
)