السلام عليكم قمت بانشاء جدول تالي وعملت امر
php artisan migrate يظهر الخطا الذي في صورة
public function up(): void
{
Schema::create('students', function (Blueprint $table) {
$table->increments('id_std');
$table->string('Name_std');
$table->int('Num_std')->unique();
$table->string('Email_std');
$table->string('pass');
$table->int('dept_id');
$table->int('id_teah');
$table->timestamps();
});
}