“Table Drop Asing Php Laravel” Kode Jawaban

Larael Drop Key Asing

Schema::table('posts', function (Blueprint $table) {
	$table->dropForeign(['category_id']);
});
Fahim Foysal

Table Drop Asing Php Laravel

 public function down()
 {
   Schema::table('tarefas', function (Blueprint $table) {
     $table->dropForeign('tarefas_user_id_foreign');

     $table->dropColumn('user_id');
   });
 }
Wide-eyed Wolf

Laravel Migrasi menjatuhkan kunci asing

$table->dropIndex(['state']); // Drops index 'geo_state_index'
Open Octopus

Jatuhkan kunci Laravel Kunci Asing

Schema::table('admins', function (Blueprint $table) {    $table->dropForeign('admins_post_id_foreign');    $table->dropColumn('post_id');});
Arrogant Ant

Jawaban yang mirip dengan “Table Drop Asing Php Laravel”

Pertanyaan yang mirip dengan “Table Drop Asing Php Laravel”

Lebih banyak jawaban terkait untuk “Table Drop Asing Php Laravel” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya