0x90
0
Q:

laravel drop table migration

php artisan migrate:rollback
0
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