Alias definitions 1.0.0

This commit is contained in:
2019-12-23 18:00:39 -03:00
parent e4b309ecc9
commit e4cc966ad7
5 changed files with 139 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace App\Alias;
class NewModel extends Model
{
protected static $_connection_name = 'mysql_copy';
protected static $_timestamps = true;
}
?>