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');
});
}
}
Schema::table('users', function (Blueprint $table) {
if (Schema::hasColumn('users', 'phone')) {
$table->dropColumn('phone');
}
});
Schema::table('clients', function (Blueprint $table) {
$table->string('UserDomainName');
});