BookStack/database/migrations/2020_09_27_210059_add_entity_soft_deletes.php

51 lines
1.3 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.
*
* @return void
*/
public function up()
{
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.
*
* @return void
*/
public function down()
{
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();
});
}
};