4ff62e29bd
- 创建 idioms 表(102条谜语式成语题库)和 idiom_game_rounds 表 - 后台成语管理页面:增删改题目 + 游戏参数(金币/经验/间隔)内联设置 + 出题按钮 - IdiomQuizController:出题/答题/当前回合查询,Redis 防并发抢答 - IdiomGameStarted / IdiomGameAnswered 广播事件 - 前端答题弹窗模块:聊天消息带【答题】按钮,点击弹出输入框 - GameConfig 注册 idiom 游戏,由 admin.game-configs 统一管理开关
42 lines
1001 B
PHP
42 lines
1001 B
PHP
<?php
|
|
|
|
/**
|
|
* 文件功能:创建猜成语题库表
|
|
*
|
|
* 存储成语题目及答案,管理员可在后台增删改。
|
|
*
|
|
* @author ChatRoom Laravel
|
|
*
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* 创建 idioms 表。
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('idioms', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('answer', 50)->comment('成语答案');
|
|
$table->string('hint', 255)->comment('谜语线索提示');
|
|
$table->boolean('is_active')->default(true)->comment('是否启用');
|
|
$table->unsignedSmallInteger('sort')->default(0)->comment('排序');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 回滚迁移。
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('idioms');
|
|
}
|
|
};
|