Configured models to match ilikecats' merged db, and expanded automigration
Cette révision appartient à :
Parent
95dfbb50e8
révision
d273671ab0
2 fichiers modifiés avec 2 ajouts et 1 suppressions
1
main.go
1
main.go
|
@ -25,6 +25,7 @@ func getDBHandle() *gorm.DB {
|
|||
|
||||
// Migrate the schema of Torrents
|
||||
dbInit.AutoMigrate(&Torrents{}, &Categories{}, &Sub_Categories{}, &Statuses{})
|
||||
|
||||
checkErr(err)
|
||||
return dbInit
|
||||
}
|
||||
|
|
|
@ -135,7 +135,7 @@ func getTorrentsOrderBy(parameters *WhereParams, orderBy string, limit int, offs
|
|||
dbQuery = db.Model(&torrents).Where(parameters.conditions, parameters.params...)
|
||||
} else {
|
||||
dbQuery = db.Model(&torrents)
|
||||
}
|
||||
}
|
||||
|
||||
if (orderBy == "") { orderBy = "torrent_id DESC" } // Default OrderBy
|
||||
if limit != 0 || offset != 0 { // if limits provided
|
||||
|
|
Référencer dans un nouveau ticket