mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
Feature: Tag StashID support (#6255)
This commit is contained in:
@@ -47,6 +47,7 @@ var (
|
||||
|
||||
tagsAliasesJoinTable = goqu.T(tagAliasesTable)
|
||||
tagRelationsJoinTable = goqu.T(tagRelationsTable)
|
||||
tagsStashIDsJoinTable = goqu.T("tag_stash_ids")
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -375,6 +376,13 @@ var (
|
||||
}
|
||||
|
||||
tagsChildTagsTableMgr = *tagsParentTagsTableMgr.invert()
|
||||
|
||||
tagsStashIDsTableMgr = &stashIDTable{
|
||||
table: table{
|
||||
table: tagsStashIDsJoinTable,
|
||||
idColumn: tagsStashIDsJoinTable.Col(tagIDColumn),
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
Reference in New Issue
Block a user