Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ That's it! Converse is now installed with sensible defaults.
If you installed Converse before version 0.1.5, run:

```bash
php artisan converse:upgrade
php artisan converse:upgrade-uuid
```

This command:
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/UpgradeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

class UpgradeCommand extends Command
{
protected $signature = 'converse:upgrade';
protected $signature = 'converse:upgrade-uuid';

protected $description = 'Upgrade Converse database schema to the latest version';
protected $description = 'Add UUID support to existing messages table';

public function handle(): int
{
Expand Down