date entries in database

I am trying to change the date and time of an entry in my wordpress database.

The only thing I see is this number:

Read More

date: 1434533564

This number appears as 17.06.2015 at 09:32 on my webpage.

And here is the database structure:

`date` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,

How can I change time and date?

Thank you!

db date

Related posts

2 comments

  1. Actually its a unix timestamp..
    You can use this function to see the actual date time :

    select FROM_UNIXTIME(1434533564);

    To change value you have to pass the date like this:
    UNIX_TIMESTAMP(“2015-02-05 00:12:12”)
    It will store the data in the format -> 1423116732

Comments are closed.