increments('id'); $table->integer('survey_id')->nullable(); $table->string('name', 255)->nullable(); $table->enum('status', ['Open','Closed'])->nullable(); $table->date('open_date')->nullable(); $table->date('close_date')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('audiences'); } }