From fa88e255ba19facc24fd49c296103d827f3c39fb Mon Sep 17 00:00:00 2001 From: PantsuDev Date: Sun, 4 Jun 2017 20:06:55 +1000 Subject: [PATCH] Revert "Start adding anidb support" This reverts commit 7d4c88861ef22f79f8532df262dd4c7ed29c9234. --- model/torrent.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/model/torrent.go b/model/torrent.go index 4b30b210..760ec9a3 100644 --- a/model/torrent.go +++ b/model/torrent.go @@ -57,7 +57,6 @@ type Torrent struct { Filesize int64 `gorm:"column:filesize"` Description string `gorm:"column:description"` WebsiteLink string `gorm:"column:website_link"` - AnidbID string `gorm:"column:"anidb_id""` Trackers string `gorm:"column:trackers"` DeletedAt *time.Time @@ -226,7 +225,6 @@ type TorrentJSON struct { Leechers uint32 `json:"leechers"` Completed uint32 `json:"completed"` LastScrape time.Time `json:"last_scrape"` - AnidbID string `json:"anidb_id"` FileList []FileJSON `json:"file_list"` }