mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 03:17:25 +08:00
27 lines
662 B
PHP
27 lines
662 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
||
|
class AddLikesField extends Migration
|
||
|
{
|
||
|
public function up()
|
||
|
{
|
||
|
if (!Schema::hasColumn('textures', 'likes')) {
|
||
|
Schema::table('textures', function (Blueprint $table) {
|
||
|
$table->integer('likes')->unsigned()->default(0);
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
if (Schema::hasColumn('textures', 'likes')) {
|
||
|
Schema::table('textures', function (Blueprint $table) {
|
||
|
$table->dropColumn('likes');
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|