refactor: rename SkipSegmentOverride to SkipSegmentOverrideRow to avoid sqlc conflict

This commit is contained in:
2026-05-19 11:29:40 +02:00
parent 80e441fc48
commit 285367ad84
5 changed files with 24 additions and 9 deletions

View File

@@ -39,7 +39,7 @@ type PlaybackRepository interface {
UpsertWatchListEntry(ctx context.Context, params db.UpsertWatchListEntryParams) (db.WatchListEntry, error)
UpsertContinueWatchingEntry(ctx context.Context, params db.UpsertContinueWatchingEntryParams) (db.ContinueWatchingEntry, error)
DeleteContinueWatchingEntry(ctx context.Context, params db.DeleteContinueWatchingEntryParams) error
ListSkipSegmentOverrides(ctx context.Context, userID string, animeID int64, episode int64) ([]db.SkipSegmentOverride, error)
UpsertSkipSegmentOverride(ctx context.Context, r db.SkipSegmentOverride) error
ListSkipSegmentOverrides(ctx context.Context, userID string, animeID int64, episode int64) ([]db.SkipSegmentOverrideRow, error)
UpsertSkipSegmentOverride(ctx context.Context, r db.SkipSegmentOverrideRow) error
HasSkipSegmentOverrideTable(ctx context.Context) (bool, error)
}