mirror of
https://github.com/grafana/grafana.git
synced 2025-01-18 12:33:37 -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
|
||
|
}
|