“Laravel Drop Column SoftDeletes” Código de respuesta

columna de caída de Laravel

// To drop a column, use the dropColumn method on the schema builder.
// Before dropping columns from a SQLite database, you will need to add
// the doctrine/dbal dependency to your composer.json file and run the
// composer update command in your terminal to install the library:

Schema::table('users', function (Blueprint $table) {
    $table->dropColumn('votes');
});
Yingfufu

Laravel Drop Column SoftDeletes

public function down()
{
  Schema::table('users', function (Blueprint $table) {
    $table->dropSoftDeletes();
  });
}
MatrixZA

Respuestas similares a “Laravel Drop Column SoftDeletes”

Preguntas similares a “Laravel Drop Column SoftDeletes”

Más respuestas relacionadas con “Laravel Drop Column SoftDeletes” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código