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

23 lines
387 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";
}
public static function importV2Textures()
{
return require BASE_DIR."/setup/migrations/import_v2_textures.php";
}
}