ايمن ميلاد نشر 8 مايو أرسل تقرير نشر 8 مايو السلام عليكم قمت بانشاء جدول تالي وعملت امر 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(); }); } 1 اقتباس
0 Mustafa Suleiman نشر 8 مايو أرسل تقرير نشر 8 مايو عليك استخدام integer بدلاً من int فذلك هو الاسم لنوع بيانات "رقم صحيح" ستجد تفصيل هنا: https://laravel.com/docs/11.x/migrations#creating-columns 1 اقتباس
السؤال
ايمن ميلاد
السلام عليكم قمت بانشاء جدول تالي وعملت امر
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(); }); }
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.