increments('id'); $table->string('type',20)->comment("类型"); $table->string('questions', 200)->nullable()->comment('问题'); $table->timestamps(); $table->timestamp('deleted_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('vip_questions'); } }