ConstantineCF
0
Q:

drop column migration laravel

public function up()
{
  Schema::table('table', function($table) {
    $table->dropColumn('column_name');
  });
}
1
Schema::drop('users');

Schema::dropIfExists('users');
0
 Class RemoveCommentViewCount extends Migration
  {
      public function up()
      {
          Schema::table('articles', function($table) {
             $table->dropColumn('comment_count');
             $table->dropColumn('view_count');
          });
      }

      public function down()
      {
          Schema::table('articles', function($table) {
             $table->integer('comment_count');
             $table->integer('view_count');
          });
      }
  }
0

New to Communities?

Join the community