Skip to content

Commit 5ea4e1e

Browse files
committed
Maintenance: Removed unused comments text column
Has been redundant and unused for a about a year now. Closes #4821
1 parent a27ce6e commit 5ea4e1e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*/
12+
public function up(): void
13+
{
14+
Schema::table('comments', function (Blueprint $table) {
15+
$table->dropColumn('text');
16+
});
17+
}
18+
19+
/**
20+
* Reverse the migrations.
21+
*/
22+
public function down(): void
23+
{
24+
Schema::table('comments', function (Blueprint $table) {
25+
$table->longText('text')->nullable();
26+
});
27+
}
28+
};

0 commit comments

Comments
 (0)