<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class BlogCommentEnable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
modstart_config()->set('Blog_CommentEnable', true);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}