diff --git a/appinfo/info.xml b/appinfo/info.xml index 260cb01f7d..ce507e1f9a 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -18,7 +18,7 @@ * 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa. ]]> - 20.0.0-dev.6 + 20.0.0-dev.7 agpl Daniel Calviño Sánchez diff --git a/lib/Migration/Version20000Date20240623123938.php b/lib/Migration/Version20000Date20240623123938.php new file mode 100644 index 0000000000..e9a7e7afc5 --- /dev/null +++ b/lib/Migration/Version20000Date20240623123938.php @@ -0,0 +1,40 @@ +getTable('talk_rooms'); + if (!$table->hasColumn('mention_permissions')) { + $table->addColumn('mention_permissions', Types::INTEGER, [ + 'default' => 0, + 'notnull' => true, + ]); + } + + return $schema; + } +}