1
0
Fork 0

Fix repo save query indentation

This commit is contained in:
Gregory Eremin 2015-03-20 21:18:47 +07:00
parent 1c1c6b1190
commit 828e1925ec
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ func (r *Repo) Save() {
insert into repos (owner, name, updated_at)
values (:owner, :name, now())
on duplicate key update
updated_at=now()
updated_at = now()
`, r)
}