increments('id'); $table->integer('survey_id')->nullable(); $table->string('name', 255)->nullable(); $table->date('date')->nullable(); $table->string('subject', 255)->nullable(); $table->longText('content')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('reminders'); } }