increments('id'); $table->string('name', 255)->nullable(); $table->enum('week', [1,2,3,4,5,6])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tms'); } }