Files
chatroom/database/migrations/2026_02_26_040521_create_messages_table.php
lkddi 50fc804402 feat: 实现挂机修仙、排行榜、大厅重构与全站留言板系统
- (Phase 8) 后台各维度管理与配置
- (Phase 9) 全自动静默挂机修仙升级
- (Phase 9) 四大维度风云排行榜页面
- (Phase 10) 全站留言板与悄悄话私信功能
- 运行 Pint 代码格式化
2026-02-26 13:35:38 +08:00

36 lines
1.1 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('messages', function (Blueprint $table) {
$table->id();
$table->integer('room_id')->index()->comment('房间ID');
$table->string('from_user', 50)->index()->comment('发送者');
$table->string('to_user', 50)->nullable()->index()->comment('接收者');
$table->text('content')->comment('消息内容');
$table->tinyInteger('is_secret')->default(0)->comment('是否私聊');
$table->string('font_color', 50)->nullable()->comment('字体颜色');
$table->string('action', 50)->nullable()->comment('动作');
$table->dateTime('sent_at')->useCurrent()->index()->comment('发送时间');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('messages');
}
};