mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-07-15 21:31:36 +03:00
Also fixed various missing types or spelling/formatting points. Added down action for role_permission table changes in migration.
39 lines
972 B
PHP
39 lines
972 B
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('comments', function (Blueprint $table) {
|
|
$table->dropColumn('text');
|
|
});
|
|
|
|
Schema::table('role_permissions', function (Blueprint $table) {
|
|
$table->dropColumn('display_name');
|
|
$table->dropColumn('description');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('comments', function (Blueprint $table) {
|
|
$table->longText('text')->nullable();
|
|
});
|
|
|
|
Schema::table('role_permissions', function (Blueprint $table) {
|
|
$table->string('display_name')->nullable();
|
|
$table->string('description')->nullable();
|
|
});
|
|
}
|
|
};
|