blessing-skin-server/app/Services/Migration.php
2016-08-06 19:45:18 +08:00

18 lines
252 B
PHP

<?php
namespace App\Services;
class Migration
{
/**
* Create tables, prefix will be added automatically
*
* @return void
*/
public static function creatTables()
{
require BASE_DIR."/setup/tables.php";
}
}