string('slug', 100)->primary(); $table->longText('value'); $table->string('name')->nullable(); $table->timestamps(); $table->comment('配置表'); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admin_settings'); } }