mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
23 lines
387 B
PHP
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";
|
|
}
|
|
|
|
}
|