id(); $table->string('name'); $table->integer('enabled')->default(1); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('course_levels'); } };