Skip to content

Commit

Permalink
models removed useless Pivot
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Sep 1, 2024
1 parent 3442563 commit 7ebc899
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/models/models/torrent_returnrelation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ namespace Models
using Orm::Constants::AddedOn;

using Orm::Tiny::Model;
using Orm::Tiny::Relations::Pivot;

class Tag_BasicPivot_NoRelations;
class Tag_CustomPivot_NoRelations;
Expand All @@ -22,7 +21,7 @@ class User_NoRelations;
class Torrent_ReturnRelation final : // NOLINT(bugprone-exception-escape, misc-no-recursion)
public Model<Torrent_ReturnRelation, TorrentPreviewableFile_NoRelations,
TorrentPeer_NoRelations, Tag_BasicPivot_NoRelations,
Tag_CustomPivot_NoRelations, User_NoRelations, Pivot>
Tag_CustomPivot_NoRelations, User_NoRelations>
{
friend Model;
using Model::Model;
Expand Down

0 comments on commit 7ebc899

Please sign in to comment.