I'm storing the registered time of a user as DATETIME, as seen below
+-----+--------------------+
| id | Join_Date |
+-----+--------------------+
| 1 | 2014-12-5 03:21:46 |
+-----+--------------------+
| 2 | 2014-12-3 03:21:46 |
+-----+--------------------+
Does it make a difference between country?
Let's say maybe in China the local time is 3am so the database stores the datetime as 3am while in India the local time is 5am so the database stores the datetime as 5am. Is this logic correct? If yes this is not what I want. What I want is store the datetime in the same timestamp. How can I do this?