Browse Source

初始数据-增加事务2

master
wanghongjun 2 weeks ago
parent
commit
55bd02e60e
  1. 6
      database/migrations/2026_02_10_175744_create_admin_translation_table.php

6
database/migrations/2026_02_10_175744_create_admin_translation_table.php

@ -13,9 +13,9 @@ return new class extends Migration
{
Schema::create('admin_translation', function (Blueprint $table) {
$table->id();
$table->string('en')->comment('英文');
$table->string('zh_cn')->comment('中文简体');
$table->string('zh_tw')->comment('中文繁体');
$table->string('en', 500)->comment('英文');
$table->string('zh_cn', 500)->comment('中文简体');
$table->string('zh_tw', 500)->comment('中文繁体');
$table->bigInteger('type_id')->default(0)->comment('关联类型id');
$table->tinyInteger('type')->default(0)->comment('关联类型');
$table->softDeletes();

Loading…
Cancel
Save