mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
Fix database migration down method
This commit is contained in:
parent
78a5f0d52e
commit
b79fdea270
1 changed files with 5 additions and 3 deletions
|
@ -27,8 +27,10 @@ class UpdateProfilesTable extends Migration
|
||||||
*/
|
*/
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
|
Schema::table('profiles', function (Blueprint $table) {
|
||||||
$table->dropColumn('unlisted');
|
$table->dropColumn('unlisted');
|
||||||
$table->dropColumn('cw');
|
$table->dropColumn('cw');
|
||||||
$table->dropColumn('no_autolink');
|
$table->dropColumn('no_autolink');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue