mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Dashboard search by tag, and tag cloud now works, god dam I hate SQL
This commit is contained in:
@@ -27,11 +27,17 @@ var (
|
||||
UseSQLite3 bool
|
||||
)
|
||||
|
||||
type DashboardTag struct {
|
||||
Id int64
|
||||
DashboardId int64
|
||||
Term string
|
||||
}
|
||||
|
||||
func init() {
|
||||
tables = make([]interface{}, 0)
|
||||
|
||||
tables = append(tables, new(m.Account), new(m.Dashboard),
|
||||
new(m.Collaborator), new(m.DataSource))
|
||||
new(m.Collaborator), new(m.DataSource), new(DashboardTag))
|
||||
}
|
||||
|
||||
func Init() {
|
||||
|
||||
Reference in New Issue
Block a user