diff --git a/internal/database/create.go b/internal/database/create.go index fc4836e..f0d5994 100644 --- a/internal/database/create.go +++ b/internal/database/create.go @@ -65,5 +65,8 @@ func CreateConnection(c *gin.Context) { session.Save() html := templates.ConnectionsList(connections, name) + html += TableTree(c) + html += EnumTree(c) + c.String(200, html) } diff --git a/web/templates/index.html b/web/templates/index.html index 666f068..f091e64 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -228,6 +228,9 @@ The connection URL will be automatically generated based on the above fields. To view the URL generated, push the "display secret details" button in the password section. +
+ When using SQLite, simply enter the file path to the database file on your system in the + "Database Name" section.