mirror of https://github.com/gogs/gogs.git
db: fix wrong column type of `login_source` (#6283)
parent
4e5b7c5d24
commit
4ecd588776
|
@ -11,6 +11,7 @@ All notable changes to Gogs are documented in this file.
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- The `updated_at` field is now correctly updated when updates an issue. [#6209](https://github.com/gogs/gogs/issues/6209)
|
- The `updated_at` field is now correctly updated when updates an issue. [#6209](https://github.com/gogs/gogs/issues/6209)
|
||||||
|
- Fixed a regression which created `login_source.cfg` column to have `VARCHAR(255)` instead of `TEXT` in MySQL. [#6280](https://github.com/gogs/gogs/issues/6280)
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ type LoginSource struct {
|
||||||
IsActived bool `xorm:"NOT NULL DEFAULT false" gorm:"NOT NULL"`
|
IsActived bool `xorm:"NOT NULL DEFAULT false" gorm:"NOT NULL"`
|
||||||
IsDefault bool `xorm:"DEFAULT false"`
|
IsDefault bool `xorm:"DEFAULT false"`
|
||||||
Config interface{} `xorm:"-" gorm:"-"`
|
Config interface{} `xorm:"-" gorm:"-"`
|
||||||
RawConfig string `xorm:"TEXT cfg" gorm:"COLUMN:cfg"`
|
RawConfig string `xorm:"TEXT cfg" gorm:"COLUMN:cfg;TYPE:TEXT"`
|
||||||
|
|
||||||
Created time.Time `xorm:"-" gorm:"-" json:"-"`
|
Created time.Time `xorm:"-" gorm:"-" json:"-"`
|
||||||
CreatedUnix int64
|
CreatedUnix int64
|
||||||
|
|
Loading…
Reference in New Issue