From 6bb519cca13b62045b69b8cb4269b200fe148468 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Mon, 30 Sep 2024 14:32:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model/role.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/model/role.go b/src/model/role.go index ad03b5c..97afd48 100644 --- a/src/model/role.go +++ b/src/model/role.go @@ -9,4 +9,6 @@ type Role struct { UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"` Logo string `json:"logo" xorm:"not null default '' VARCHAR(255)"` Label string `json:"label" xorm:"not null default '' VARCHAR(255)"` + SeoLogo string `json:"seo_logo" xorm:"not null default '' VARCHAR(255)"` + SeoTitle string `json:"seo_title" xorm:"not null default '' VARCHAR(255)"` }