Update hosts form

This commit is contained in:
2026-09-20 12:51:12 +01:00
parent 8b40a876a1
commit a9ebd8fb75
13 changed files with 198 additions and 67 deletions
+9
View File
@@ -218,6 +218,15 @@ const schema: BUN_SQLITE_DatabaseSchemaType = {
fieldName: "user_id",
dataType: "INTEGER",
},
{
fieldName: "name",
dataType: "TEXT",
defaultValue: "Main",
},
{
fieldName: "short_description",
dataType: "TEXT",
},
{
fieldName: "public_ip_address",
dataType: "TEXT",
+2
View File
@@ -131,6 +131,8 @@ export type BUN_SQLITE_WGUI_HOSTS = {
*/
updated_at?: number | "";
user_id?: number | "";
name?: string;
short_description?: string;
public_ip_address?: string;
interface?: string;
wg_ip_address?: string;