bug fix
This commit is contained in:
parent
31ce528cee
commit
44cf0544e0
@ -168,6 +168,12 @@ Restart nginx:
|
||||
sudo systemctl restart nginx
|
||||
```
|
||||
|
||||
And finally, link the storage to the public folder:
|
||||
|
||||
```bash
|
||||
php artisan storage:link
|
||||
```
|
||||
|
||||
## TODO:
|
||||
|
||||
For a list of planned features and improvements, please refer to the [TODO](TODO) file.
|
||||
|
@ -32,7 +32,7 @@ return new class extends Migration
|
||||
|
||||
$table->string ("preferredUsername")->nullable ();
|
||||
$table->string ("name")->nullable ();
|
||||
$table->string ("summary")->nullable ();
|
||||
$table->text ("summary")->nullable ();
|
||||
|
||||
$table->text ("public_key")->nullable ();
|
||||
$table->text ("private_key")->nullable ();
|
||||
|
@ -34,7 +34,7 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('hashtags');
|
||||
Schema::dropIfExists('note_hashtag');
|
||||
Schema::dropIfExists('hashtags');
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user