Add permission page.

This commit is contained in:
Yang Luo
2022-01-01 16:28:06 +08:00
parent ffc0a0e0d5
commit 9b6131890c
15 changed files with 947 additions and 0 deletions

View File

@ -110,6 +110,11 @@ func (a *Adapter) createTable() {
panic(err)
}
err = a.Engine.Sync2(new(Permission))
if err != nil {
panic(err)
}
err = a.Engine.Sync2(new(Provider))
if err != nil {
panic(err)