Every date column in every table inside Oracle has the same format. It is 7 bytes (century, year, month, day, hour, min, sec).
The way you *see* a date is totally under the control of your session. The database provides a default, but the it ultimately the client that makes the decision.
SQL> select sysdate from dual;
SYSDATE
---------
13-FEB-18
1 row selected.
SQL> alter session set nls_date_format = 'dd/mm/yyyy hh24:mi:ss';
Session altered.
SQL> select sysdate from dual;
SYSDATE
-------------------
13/02/2018 09:28:53
1 row selected.
SQL> alter session set nls_date_format = 'yyyy/mm/dd';
Session altered.
SQL> select sysdate from dual;
SYSDATE
----------
2018/02/13
1 row selected.