id(); $table->string('title')->comment("标题"); $table->text('content')->comment("内容"); $table->string('note')->nullable()->comment("说明"); $table->timestamps(); $table->timestamp('deleted_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('surveys'); } };