mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-05-03 11:31:35 -05:00
12 lines
301 B
Go
12 lines
301 B
Go
package db
|
|
|
|
const (
|
|
TableNameUsers = "users"
|
|
TableNameOrgs = "organizations"
|
|
TableNameOrgUsers = "organization_users"
|
|
TableNameProperties = "properties"
|
|
TableNameSubscriptions = "subscriptions"
|
|
TableNameAPIKeys = "apikeys"
|
|
TableNameAuditLogs = "audit_logs"
|
|
)
|