Browse Source

Fix migration for user defined themes (#5682)

for-closed-social
Lanre Adelowo 5 years ago
committed by techknowlogick
parent
commit
9e9d1b8f95
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/migrations/v77.go

+ 1
- 1
models/migrations/v77.go View File

@ -10,7 +10,7 @@ import (
func addUserDefaultTheme(x *xorm.Engine) error { func addUserDefaultTheme(x *xorm.Engine) error {
type User struct { type User struct {
Theme string `xorm:"VARCHAR(30)"`
Theme string `xorm:"VARCHAR(30) NOT NULL DEFAULT ''"`
} }
return x.Sync2(new(User)) return x.Sync2(new(User))

Loading…
Cancel
Save