You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/oplog/store/oplog_entry.go

14 lines
502 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package store
// TableName overrides the gorm database table for the store.Oplog messages
func (*Entry) TableName() string { return "oplog_entry" }
// TableName overrides the gorm database table for the store.Ticket messages
func (*Ticket) TableName() string { return "oplog_ticket" }
// TableName overrides the gorm database table for the store.Metadata messages
func (*Metadata) TableName() string { return "oplog_metadata" }