This commit is contained in:
Ghostie 2025-01-05 19:42:52 -05:00
parent 31ce528cee
commit 44cf0544e0
3 changed files with 8 additions and 2 deletions

View File

@ -168,6 +168,12 @@ Restart nginx:
sudo systemctl restart nginx sudo systemctl restart nginx
``` ```
And finally, link the storage to the public folder:
```bash
php artisan storage:link
```
## TODO: ## TODO:
For a list of planned features and improvements, please refer to the [TODO](TODO) file. For a list of planned features and improvements, please refer to the [TODO](TODO) file.

View File

@ -32,7 +32,7 @@ return new class extends Migration
$table->string ("preferredUsername")->nullable (); $table->string ("preferredUsername")->nullable ();
$table->string ("name")->nullable (); $table->string ("name")->nullable ();
$table->string ("summary")->nullable (); $table->text ("summary")->nullable ();
$table->text ("public_key")->nullable (); $table->text ("public_key")->nullable ();
$table->text ("private_key")->nullable (); $table->text ("private_key")->nullable ();

View File

@ -34,7 +34,7 @@ return new class extends Migration
*/ */
public function down(): void public function down(): void
{ {
Schema::dropIfExists('hashtags');
Schema::dropIfExists('note_hashtag'); Schema::dropIfExists('note_hashtag');
Schema::dropIfExists('hashtags');
} }
}; };