comment('配置信息'); $table->increments('id'); $table->integer('admin_id')->nullable(); $table->integer('department_id')->nullable(); $table->string('name')->nullable()->comment('名字'); $table->string('key')->nullable()->comment('标识'); $table->mediumText('value')->nullable()->comment('值'); $table->mediumText('other')->nullable()->comment('其他'); $table->dateTime('created_at')->nullable(); $table->dateTime('updated_at')->nullable(); $table->dateTime('deleted_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configs'); } };