Modify: add unique index for folder & file

This commit is contained in:
HFO4
2019-12-01 11:23:54 +08:00
parent b3f13c56bc
commit ceb25ce1c3
6 changed files with 16 additions and 17 deletions

View File

@@ -140,9 +140,10 @@ func (user *User) BeforeSave() (err error) {
func (user *User) AfterCreate(tx *gorm.DB) (err error) {
// 创建用户的默认根目录
defaultFolder := &Folder{
Name: "根目录",
Position: ".",
OwnerID: user.ID,
Name: "根目录",
Position: ".",
OwnerID: user.ID,
PositionAbsolute: "/",
}
tx.Create(defaultFolder)
return err