mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-10 06:00:45 +00:00
Merge pull request #5379 from siarie/fix-sqlite-migration
Fix sqlite database migration
This commit is contained in:
commit
f1bfcc9528
1 changed files with 1 additions and 0 deletions
|
@ -12,6 +12,7 @@ return new class extends Migration
|
||||||
public function up(): void
|
public function up(): void
|
||||||
{
|
{
|
||||||
Schema::table('group_posts', function (Blueprint $table) {
|
Schema::table('group_posts', function (Blueprint $table) {
|
||||||
|
$table->dropUnique(['status_id']);
|
||||||
$table->dropColumn('status_id');
|
$table->dropColumn('status_id');
|
||||||
$table->dropColumn('reply_child_id');
|
$table->dropColumn('reply_child_id');
|
||||||
$table->dropColumn('in_reply_to_id');
|
$table->dropColumn('in_reply_to_id');
|
||||||
|
|
Loading…
Reference in a new issue