Initial commit

This commit is contained in:
xboard
2023-11-17 14:44:01 +08:00
commit 65fe7682ff
460 changed files with 63554 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
## V2borad wyx2685版本迁移指南
> 此迁移指南写于 2023/11/17 , 其他时间的版本可能会迁移失败
- wyx2685 添加了设备限制的功能,如果你迁移过来你会失去这个功能
- 你会失去wyx2685佬添加的 trojan的 **(我也不知道) 功能
- 你的hysteria2 线路需要重新配置
### 迁移脚本会对你的数据库做以下更改
- v2_plan
- 删除字段 `device_limit` nullable
- v2_server_hysteria
- 删除字段 `version`
- 删除字段 `obfs`
- 删除字段 `obfs_password`
- v2_server_trojan
- 删除字段 `network`
- 删除字段 `network_settings`
- v2_user
- 删除字段 `device_limit`
### 迁移命令
```
php artisan migratefromv2b wyx2685
```
>如果你是docker-compose 部署
```
docker compose down
docker compose run -it --rm xboard php artisan migratefromv2b wyx2685
docker compose up -d
```