a
Size: a a a
a
AP
AP
AP
a
AP
a
select *
from "connection_statuses"
where "created_at" < '2021-03-31 20:58:29'
and "gprs" is not null
and not (
(
"panel" = 'panel'
and "pult_id" = '555'
and "group" = 3
)
or (
"panel" = 'panel'
and "pult_id" = '666'
and "group" = 0
)
);
AP
If your queued job accepts an Eloquent model in its constructor, only the identifier for the model will be serialized onto the queue. When the job is actually handled, the queue system will automatically re-retrieve the full model instance and its loaded relationships from the database. This approach to model serialization allows for much smaller job payloads to be sent to your queue driver.
AP
select *
from "connection_statuses"
where "created_at" < '2021-03-31 20:58:29'
and "gprs" is not null
and not (
(
"panel" = 'panel'
and "pult_id" = '555'
and "group" = 3
)
or (
"panel" = 'panel'
and "pult_id" = '666'
and "group" = 0
)
);
a
AP
a
SG
SG
AP
AP
and not
AP