“Laravel -Drop -Säulen -Softdeletes” Code-Antworten

Laravel Drop -Säule

// 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 -Säulen -Softdeletes

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

Ähnliche Antworten wie “Laravel -Drop -Säulen -Softdeletes”

Fragen ähnlich wie “Laravel -Drop -Säulen -Softdeletes”

Weitere verwandte Antworten zu “Laravel -Drop -Säulen -Softdeletes” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen