55
55
* @property int $igdb
56
56
* @property int|null $season_number
57
57
* @property int|null $episode_number
58
- * @property int $stream
59
58
* @property int $free
60
59
* @property bool $doubleup
61
60
* @property bool $refundable
65
64
* @property int|null $moderated_by
66
65
* @property bool $anon
67
66
* @property bool $sticky
68
- * @property int $sd
69
67
* @property int $internal
70
68
* @property \Illuminate\Support\Carbon|null $created_at
71
69
* @property \Illuminate\Support\Carbon|null $updated_at
@@ -168,15 +166,13 @@ protected function casts(): array
168
166
torrents.igdb,
169
167
torrents.season_number,
170
168
torrents.episode_number,
171
- torrents.stream,
172
169
torrents.free,
173
170
torrents.doubleup,
174
171
torrents.refundable,
175
172
torrents.highspeed,
176
173
torrents.status,
177
174
torrents.anon,
178
175
torrents.sticky,
179
- torrents.sd,
180
176
torrents.internal,
181
177
UNIX_TIMESTAMP(torrents.deleted_at) AS deleted_at,
182
178
torrents.distributor_id,
@@ -846,7 +842,6 @@ public function toSearchableArray(): array
846
842
'igdb ' ,
847
843
'season_number ' ,
848
844
'episode_number ' ,
849
- 'stream ' ,
850
845
'free ' ,
851
846
'doubleup ' ,
852
847
'refundable ' ,
@@ -855,7 +850,6 @@ public function toSearchableArray(): array
855
850
'status ' ,
856
851
'anon ' ,
857
852
'sticky ' ,
858
- 'sd ' ,
859
853
'internal ' ,
860
854
'deleted_at ' ,
861
855
'distributor_id ' ,
@@ -918,7 +912,6 @@ public function toSearchableArray(): array
918
912
'igdb ' => $ torrent ->igdb ,
919
913
'season_number ' => $ torrent ->season_number ,
920
914
'episode_number ' => $ torrent ->episode_number ,
921
- 'stream ' => (bool ) $ torrent ->stream ,
922
915
'free ' => $ torrent ->free ,
923
916
'doubleup ' => (bool ) $ torrent ->doubleup ,
924
917
'refundable ' => (bool ) $ torrent ->refundable ,
@@ -927,7 +920,6 @@ public function toSearchableArray(): array
927
920
'status ' => $ torrent ->status ->value ,
928
921
'anon ' => (bool ) $ torrent ->anon ,
929
922
'sticky ' => (int ) $ torrent ->sticky ,
930
- 'sd ' => (bool ) $ torrent ->sd ,
931
923
'internal ' => (bool ) $ torrent ->internal ,
932
924
'deleted_at ' => $ torrent ->deleted_at ?->timestamp,
933
925
'distributor_id ' => $ torrent ->distributor_id ,
0 commit comments