mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 09:44:21 +00:00 
			
		
		
		
	Fix setting version table in dump (#15753)
* Fix setting version table in dump As noted on Discord there is a problem with gitea dump where the version table is not being dumped correctly. This is due to a missing pointer in the TableInfo. This PR fixes this. Signed-off-by: Andrew Thornton <art27@cantab.net> * Update models_test.go
This commit is contained in:
		@@ -320,7 +320,7 @@ func DumpDatabase(filePath, dbType string) error {
 | 
				
			|||||||
		ID      int64 `xorm:"pk autoincr"`
 | 
							ID      int64 `xorm:"pk autoincr"`
 | 
				
			||||||
		Version int64
 | 
							Version int64
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	t, err := x.TableInfo(Version{})
 | 
						t, err := x.TableInfo(&Version{})
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return err
 | 
							return err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,7 +25,7 @@ func TestDumpDatabase(t *testing.T) {
 | 
				
			|||||||
		ID      int64 `xorm:"pk autoincr"`
 | 
							ID      int64 `xorm:"pk autoincr"`
 | 
				
			||||||
		Version int64
 | 
							Version int64
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	assert.NoError(t, x.Sync2(Version{}))
 | 
						assert.NoError(t, x.Sync2(new(Version)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for _, dbName := range setting.SupportedDatabases {
 | 
						for _, dbName := range setting.SupportedDatabases {
 | 
				
			||||||
		dbType := setting.GetDBTypeByName(dbName)
 | 
							dbType := setting.GetDBTypeByName(dbName)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user