А
Size: a a a
А
А
А
MB
🅚
Schema::dropIfExists('products');SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table
Schema::create('products', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->integer('price');
$table->string('title');
$table->integer('category_id');
$table->timestamps();
});
Schema::table('products', function (Blueprint $table) {
$table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade');
});
products
add constraint products_category_id_foreign
foreign key (`category_id`) references categories
(`id`) on delete cascade)🅚
R
AB
R
R
R
🅚
R
D
D
D
D
M
$array['key'] = 'her';
А
️️