BookStackApp_BookStack/database/migrations/2020_09_27_210059_add_entity_soft_deletes.php
Dan Brown 45d52f27ae
Migrations: Updated with type hints instead of php doc
Also updated code to properly import used facades.
For #4903
2024-03-17 15:29:09 +00:00

47 lines
1.2 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('bookshelves', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('books', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('chapters', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('pages', function (Blueprint $table) {
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('bookshelves', function (Blueprint $table) {
$table->dropSoftDeletes();
});
Schema::table('books', function (Blueprint $table) {
$table->dropSoftDeletes();
});
Schema::table('chapters', function (Blueprint $table) {
$table->dropSoftDeletes();
});
Schema::table('pages', function (Blueprint $table) {
$table->dropSoftDeletes();
});
}
};