From 22cfd7ddec757bfee1a660b11c9e91b00ff66c61 Mon Sep 17 00:00:00 2001 From: Minho Date: Thu, 25 May 2017 16:26:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9B=B4=E6=96=B0=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/update.go b/commands/update.go index 0302ef7f..90db7f65 100644 --- a/commands/update.go +++ b/commands/update.go @@ -107,7 +107,7 @@ func sqliteUpdate() { err := o.Raw("select * from sqlite_master where name='md_members' and sql like '%auth_method%' limit 1").QueryRow(&sqlite_master) //查询是否已经存在 auth_method 列 - if err == nil && sqlite_master.Name == ""{ + if err == orm.ErrNoRows{ _,err = o.Raw("ALTER TABLE md_members ADD auth_method VARCHAR(50) DEFAULT 'local' NULL;").Exec() if err != nil { panic(fmt.Sprintf("error : 6001 => %s",err.Error()))