I have django project and one separate service.
In django timezone is UTC+3 and in separate service I have written pure sql codes
like below
INSERT INTO Table(something,something,datetime) VALUES(%s,%s,%s)
as a datetime field if I send 2021-04-28 01:00:00, django will save it 2021-04-28 04:00:00,
3 hours more. How can I implement db to store exactly what I send there.