premium_ends_at stores the date when premium ends at, in unix_timestamp numeric format.
To get the value that represents "right now", you can use any of these functions:
In SQL queries, UNIX_TIMESTAMP()
SELECT
CONCAT('Current unix_timestamp is: ', UNIX_TIMESTAMP())
In Lua, os.time()...