Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Configured models to match ilikecats' merged db, and expanded automigration

Cette révision appartient à :
Lietzu 2017-05-04 18:52:46 -04:00
Parent 95dfbb50e8
révision d273671ab0
2 fichiers modifiés avec 2 ajouts et 1 suppressions

Voir le fichier

@ -25,6 +25,7 @@ func getDBHandle() *gorm.DB {
// Migrate the schema of Torrents
dbInit.AutoMigrate(&Torrents{}, &Categories{}, &Sub_Categories{}, &Statuses{})
checkErr(err)
return dbInit
}

Voir le fichier

@ -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