Answers for "how to drop a column in mysql laravel stackoverflow"

SQL
0

how to drop a column in mysql laravel stackoverflow

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');
          });
      }
  }
Posted by: Guest on February-16-2021

Code answers related to "how to drop a column in mysql laravel stackoverflow"

Code answers related to "SQL"

Browse Popular Code Answers by Language