40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
|
<?php
|
|||
|
|
|||
|
use Hyperf\Database\Schema\Schema;
|
|||
|
use Hyperf\Database\Schema\Blueprint;
|
|||
|
use Hyperf\Database\Migrations\Migration;
|
|||
|
use Hyperf\DbConnection\Db;
|
|||
|
class CreateEmoticonDetailsTable extends Migration
|
|||
|
{
|
|||
|
/**
|
|||
|
* Run the migrations.
|
|||
|
*/
|
|||
|
public function up(): void
|
|||
|
{
|
|||
|
Schema::create('emoticon_details', function (Blueprint $table) {
|
|||
|
$table->unsignedInteger('id', true)->comment('表情包ID');
|
|||
|
$table->unsignedInteger('emoticon_id')->default(0)->comment('表情分组ID');
|
|||
|
$table->unsignedInteger('user_id')->default(0)->comment('用户ID(0:代码系统表情包)');
|
|||
|
$table->string('describe', 20)->default('')->comment('表情关键字描述');
|
|||
|
$table->string('url', 255)->default('')->comment('表情链接');
|
|||
|
$table->string('file_suffix', 10)->default('')->comment('文件后缀名');
|
|||
|
$table->unsignedBigInteger('file_size')->default(0)->comment('文件大小(单位字节)');
|
|||
|
$table->unsignedInteger('created_at')->nullable(true)->default(0)->comment('添加时间');
|
|||
|
|
|||
|
$table->charset = 'utf8';
|
|||
|
$table->collation = 'utf8_general_ci';
|
|||
|
});
|
|||
|
|
|||
|
$prefix = config('databases.default.prefix');
|
|||
|
DB::statement("ALTER TABLE `{$prefix}emoticon_details` comment '聊天表情包'");
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* Reverse the migrations.
|
|||
|
*/
|
|||
|
public function down(): void
|
|||
|
{
|
|||
|
Schema::dropIfExists('emoticon_details');
|
|||
|
}
|
|||
|
}
|