“Migration umbenannt Säule Laravel” 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 umbenennen Tabelle

Schema::rename($currentTableName, $newTableName);
Alberto Peripolli

Migration umbenannt Säule Laravel

php artisan make:migration rename_author_id_in_posts_table --table=posts
Prasanth PPS

Migration umbenannt Säule Laravel

public function up()
{
    Schema::table('posts', function (Blueprint $table) {
        $table->renameColumn('author_ID', 'user_id');
    });
}
Prasanth PPS

Laravel -Migrationen umbenennen die Tabelle um

Schema::rename('oldTablename', 'newTableName');
Marco Tellez

Migration umbenannt Säule Laravel

public function down()
{
    Schema::table('posts', function (Blueprint $table) {
        $table->renameColumn('user_id', 'author_ID');
    });
}
Prasanth PPS

Ähnliche Antworten wie “Migration umbenannt Säule Laravel”

Fragen ähnlich wie “Migration umbenannt Säule Laravel”

Weitere verwandte Antworten zu “Migration umbenannt Säule Laravel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen