Step 3 - [ESX] Changes

Download esx_context

Next, you need to check if your "users" table has an column named "last_seen". If not, insert this SQL.

ALTER TABLE users
ADD `last_seen` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp();

Last updated

Was this helpful?