|
|
|
@ -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(); |
|
|
|
|