mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
10 lines
161 B
Go
10 lines
161 B
Go
package sqlstore
|
|
|
|
// extra tables not required by the core/outside model
|
|
|
|
type DashboardTag struct {
|
|
Id int64
|
|
DashboardId int64
|
|
Term string
|
|
}
|