“TABLE DOW PHP ESTRAIGO Laravel” Respostas de código

Larael soltar a chave estrangeira

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

TABLE DOW PHP ESTRAIGO Laravel

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

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

Migração Laravel Drop Keys estrangeiros

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

soltar a chave estrangeira Laravel

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

Respostas semelhantes a “TABLE DOW PHP ESTRAIGO Laravel”

Perguntas semelhantes a “TABLE DOW PHP ESTRAIGO Laravel”

Mais respostas relacionadas para “TABLE DOW PHP ESTRAIGO Laravel” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código