-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlc.yaml
More file actions
102 lines (102 loc) · 3.46 KB
/
Copy pathsqlc.yaml
File metadata and controls
102 lines (102 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: "2"
sql:
- engine: "sqlite"
queries: "internal/database/queries"
schema: "internal/database/migrations"
gen:
go:
package: "sqlc"
out: "internal/database/sqlc"
emit_json_tags: true
emit_empty_slices: true
emit_result_struct_pointers: true
overrides:
# download_clients
- column: "download_clients.use_ssl"
go_type: "bool"
- column: "download_clients.enabled"
go_type: "bool"
# download_mappings
- column: "download_mappings.is_season_pack"
go_type: "bool"
- column: "download_mappings.is_complete_series"
go_type: "bool"
# episodes
- column: "episodes.monitored"
go_type: "bool"
# episode_slot_assignments
- column: "episode_slot_assignments.monitored"
go_type: "bool"
# indexer_history
- column: "indexer_history.successful"
go_type: "bool"
# indexers
- column: "indexers.supports_movies"
go_type: "bool"
- column: "indexers.supports_tv"
go_type: "bool"
- column: "indexers.enabled"
go_type: "bool"
- column: "indexers.auto_search_enabled"
go_type: "bool"
- column: "indexers.rss_enabled"
go_type: "bool"
# movies
- column: "movies.monitored"
go_type: "bool"
# movie_slot_assignments
- column: "movie_slot_assignments.monitored"
go_type: "bool"
# multi_version_settings
- column: "multi_version_settings.enabled"
go_type: "bool"
- column: "multi_version_settings.dry_run_completed"
go_type: "bool"
# notifications
- column: "notifications.enabled"
go_type: "bool"
- column: "notifications.include_health_warnings"
go_type: "bool"
# portal_invitations
- column: "portal_invitations.auto_approve"
go_type: "bool"
# portal_notifications
- column: "portal_notifications.read"
go_type: "bool"
# portal_users
- column: "portal_users.auto_approve"
go_type: "bool"
- column: "portal_users.enabled"
go_type: "bool"
- column: "portal_users.is_admin"
go_type: "bool"
# prowlarr_config
- column: "prowlarr_config.enabled"
go_type: "bool"
- column: "prowlarr_config.skip_ssl_verify"
go_type: "bool"
# quality_profiles
- column: "quality_profiles.upgrades_enabled"
go_type: "bool"
- column: "quality_profiles.allow_auto_approve"
go_type: "bool"
# seasons
- column: "seasons.monitored"
go_type: "bool"
# series
- column: "series.monitored"
go_type: "bool"
- column: "series.season_folder"
go_type: "bool"
# user_notifications
- column: "user_notifications.on_available"
go_type: "bool"
- column: "user_notifications.enabled"
go_type: "bool"
- column: "user_notifications.on_approved"
go_type: "bool"
- column: "user_notifications.on_denied"
go_type: "bool"
# version_slots
- column: "version_slots.enabled"
go_type: "bool"