Change default date format in Oracle

Comparing #10 with #11

Revision #11 was created by lenovo lenovo on Sep 19, 2019, 1:19:31 AM.

content formating

Content

[...]
```
ALTER SESSION SET NLS_DATE_FORMAT=...
```

Add this script inside your database connection file

 
```
// Schema cache options (for production environment)
//'enableSchemaCache' => true,
[...]
$event->sender->createCommand("ALTER SESSION SET NLS_DATE_FORMAT='DD-MM-YYYY hh24:mi:ss'")->execute();
}
```