id(); $table->smallInteger('position'); $table->string('name', 255)->unique(); $table->text('description')->nullable(); $table->string('slug', 255)->unique(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('subjects'); } };