bigIncrements('id'); $table->string('name')->comment('配置名'); $table->string('slug', 20)->comment('标志'); $table->string('type', 20)->default('string')->comment('配置类型'); $table->text('body')->comment('配置项'); $table->bigInteger('area_id')->default(0)->comment('区域id'); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }