blessing-skin-server/database/migrations/2019_03_16_162603_remove_likes_field.php
2019-03-16 16:32:49 +08:00

33 lines
617 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RemoveLikesField extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Schema::hasColumn('textures', 'likes')) {
Schema::table('textures', function (Blueprint $table) {
$table->dropColumn('likes');
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// Do nothing.
}
}