“Spaltentyp der Laravel -Migrations -Aktualisierungstabelle” Code-Antworten

Laravel -Migration Änderung des Säulenentyps

public function up()
{
    Schema::table('sometable', function (Blueprint $table) {
        $table->text('text')->change();
    });
}
hmt

Spaltentyp der Laravel -Migrations -Aktualisierungstabelle

Schema::table('users', function ($table) {
    $table->string('name', 50)->change();
});
We could also modify a column to be nullable:

Schema::table('users', function ($table) {
    $table->string('name', 50)->nullable()->change();
});
Shadow

Ähnliche Antworten wie “Spaltentyp der Laravel -Migrations -Aktualisierungstabelle”

Fragen ähnlich wie “Spaltentyp der Laravel -Migrations -Aktualisierungstabelle”

Weitere verwandte Antworten zu “Spaltentyp der Laravel -Migrations -Aktualisierungstabelle” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen