mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	v172 migration adds created_unix field instead of expiry (#15458)
The Session table must have an Expiry field not a created_unix field - somehow this migration adds the incorrect named field leading to #15445 reports. Fix #15445 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -14,7 +14,7 @@ func addSessionTable(x *xorm.Engine) error {
 | 
				
			|||||||
	type Session struct {
 | 
						type Session struct {
 | 
				
			||||||
		Key    string `xorm:"pk CHAR(16)"`
 | 
							Key    string `xorm:"pk CHAR(16)"`
 | 
				
			||||||
		Data   []byte `xorm:"BLOB"`
 | 
							Data   []byte `xorm:"BLOB"`
 | 
				
			||||||
		CreatedUnix timeutil.TimeStamp
 | 
							Expiry timeutil.TimeStamp
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return x.Sync2(new(Session))
 | 
						return x.Sync2(new(Session))
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user