Mysql
 sql >> Database >  >> RDS >> Mysql

Aggiornamento dello schema delle tabelle senza influire sui dati in Laravel

crea nuova migrazione con nome artigiano aggiungeColumnFestivalTable

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;

class addColumnFestivalTable extends Migration {

public function up()
{
    Schema::table('festivals', function($table)
    {
        $table->string('new_col_name');
     });

}

public function down()
{
    Schema::table('festivals', function($table)
    {
       $table->dropColumn('new_col_name');
    });
}

}

per maggiori informazioni leggi Laravel 5.4 doc