2017-03-15 01:18:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class AddLockedStatusToTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2017-03-15 01:18:36 +00:00
|
|
|
{
|
|
|
|
Schema::table('packs', function (Blueprint $table) {
|
|
|
|
$table->boolean('locked')->default(false)->after('visible');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2017-03-15 01:18:36 +00:00
|
|
|
{
|
|
|
|
Schema::table('packs', function (Blueprint $table) {
|
|
|
|
$table->dropColumn('locked');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|