“Laravel Zmień tabelę” Kod odpowiedzi

migracja laravel usuń kolumnę

public function up()
{
  Schema::table('table', function($table) {
    $table->dropColumn('column_name');
  });
}
Faithful Fish

Migracje wymagane pola Laravela

$table->string('foo')->nullable(false)->change();
r00ster

Laravel Zmień tabelę

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

migracja Zmień nazwę Laravel

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

migracja Zmień nazwę Laravel

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

Zmień nazwę migracji Laravel

php artisan make:migration alter_your_table --table=your_table
Easy Emu

Odpowiedzi podobne do “Laravel Zmień tabelę”

Pytania podobne do “Laravel Zmień tabelę”

Więcej pokrewnych odpowiedzi na “Laravel Zmień tabelę” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu