Answers for "remove column migration eloquent"

PHP
6

laravel migration remove column

public function up()
{
  Schema::table('table', function($table) {
    $table->dropColumn('column_name');
  });
}
Posted by: Guest on April-16-2020
1

how remove column in migration laravel

Schema::table('articles', function($table) {
             $table->dropColumn('comment_count');
             $table->dropColumn('view_count');
          });
Posted by: Guest on September-11-2021

Code answers related to "remove column migration eloquent"

Browse Popular Code Answers by Language