Skip to content

Commit 484954c

Browse files
authored
Merge pull request #27 from Funzinator/feature/grafana-9
Add columns to work with Grafana ~9.0.0
2 parents 453440a + c7e5d2c commit 484954c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pkg/postgresql/tablechanges.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ var TableChanges = []TableChange{
6161
Name: "has_acl",
6262
Default: "false",
6363
},
64+
{
65+
Name: "is_public",
66+
Default: "false",
67+
},
6468
},
6569
},
6670
{
@@ -151,4 +155,13 @@ var TableChanges = []TableChange{
151155
},
152156
},
153157
},
158+
{
159+
Table: "role",
160+
Columns: []Column{
161+
{
162+
Name: "hidden",
163+
Default: "false",
164+
},
165+
},
166+
},
154167
}

0 commit comments

Comments
 (0)