Skip to content

Commit

Permalink
Fix missing reference to original_table
Browse files Browse the repository at this point in the history
  • Loading branch information
hlieberman committed Jul 19, 2023
1 parent c875ddb commit c3a6e69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shared_python/Tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def distinct_tags(self, database):
SELECT DISTINCT
id as "Original Tag ID",
original_tag as "Original Tag Name",
original_type as "Original Tag Type",
original_table as "Original Tag Type",
original_parent as "Original Parent Tag",
ao3_tag_fandom as "Related Fandom",
ao3_tag as "Recommended AO3 Tag",
Expand Down
2 changes: 1 addition & 1 deletion test/test_data/test.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CREATE TABLE tags (
`id` int NOT NULL AUTO_INCREMENT,
`original_tagid` int DEFAULT NULL,
`original_tag` varchar(1024) DEFAULT NULL,
`original_type` varchar(255) DEFAULT NULL,
`original_table` varchar(255) DEFAULT NULL,
`original_parent` varchar(255) DEFAULT NULL,
`original_description` varchar(1024) DEFAULT NULL,
`ao3_tag` varchar(1024) DEFAULT NULL,
Expand Down

0 comments on commit c3a6e69

Please sign in to comment.