id(); $table->bigInteger('pid')->default(0)->comment('父ID'); $table->string('name', 40)->comment('字典值'); $table->string('title', 40)->comment('字典名'); $table->tinyInteger('status')->default(1)->comment('状态:1 启用 2 关闭'); $table->timestamps(); $table->unique(['pid', 'name']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uc_dictionary_t'); } }