mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
15 lines
268 B
PHP
15 lines
268 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace app\common\command\admin;
|
|
|
|
use base\common\command\admin\MigrateFileDataBase;
|
|
|
|
class MigrateFileData extends MigrateFileDataBase
|
|
{
|
|
protected $fromDomain = [];
|
|
|
|
protected $toDomain = 'https://admin.demo.ulthon.com';
|
|
}
|