mirror of
https://github.com/flarum/core.git
synced 2025-08-02 14:37:49 +02:00
not dropping bio due to not having a replacement
This commit is contained in:
@@ -23,7 +23,6 @@ return [
|
|||||||
$table->renameColumn('read_time', 'marked_all_as_read_at');
|
$table->renameColumn('read_time', 'marked_all_as_read_at');
|
||||||
$table->renameColumn('notifications_read_time', 'read_notifications_at');
|
$table->renameColumn('notifications_read_time', 'read_notifications_at');
|
||||||
$table->renameColumn('avatar_path', 'avatar_url');
|
$table->renameColumn('avatar_path', 'avatar_url');
|
||||||
$table->dropColumn('bio');
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -37,7 +36,6 @@ return [
|
|||||||
$table->renameColumn('marked_all_as_read_at', 'read_time');
|
$table->renameColumn('marked_all_as_read_at', 'read_time');
|
||||||
$table->renameColumn('read_notifications_at', 'notifications_read_time');
|
$table->renameColumn('read_notifications_at', 'notifications_read_time');
|
||||||
$table->renameColumn('avatar_url', 'avatar_path');
|
$table->renameColumn('avatar_url', 'avatar_path');
|
||||||
$table->text('bio')->nullable();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user