feat: bump Nextcloud dependency

pull/126/head
sualko 2021-02-13 16:58:04 +01:00
parent 6f643cfed3
commit 02bcd21568
5 changed files with 2 additions and 7 deletions

View File

@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.3', '7.4']
nextcloud-versions: ['stable19', 'stable20', 'stable21', 'master']
nextcloud-versions: ['stable19', 'stable20', 'stable21']
include:
- php-versions: '7.2'
nextcloud-versions: 'stable19'
@ -20,8 +20,6 @@ jobs:
nextcloud-versions: 'stable20'
- php-versions: '8.0'
nextcloud-versions: 'stable21'
- php-versions: '8.0'
nextcloud-versions: 'master'
name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests
env:
CI: true

View File

@ -40,7 +40,7 @@ Developer wanted! If you have time it would be awesome if you could help to enha
<lib>curl</lib>
<lib>mbstring</lib>
<lib>SimpleXML</lib>
<nextcloud min-version="18" max-version="20"/>
<nextcloud min-version="19" max-version="21"/>
</dependencies>
<settings>
<admin>OCA\BigBlueButton\Settings\Admin</admin>

View File

@ -28,7 +28,6 @@ class Version000000Date20200416124731 extends SimpleMigrationStep {
'notnull' => true,
]);
$table->addColumn('uid', 'string', [
'unique' => true,
'notnull' => true,
'length' => 64
]);

View File

@ -31,7 +31,6 @@ class Version000000Date20200826100844 extends SimpleMigrationStep {
'notnull' => true,
]);
$table->addColumn('group_id', 'string', [
'unique' => true,
'notnull' => true,
'length' => 200,
]);

View File

@ -29,7 +29,6 @@ class Version000000Date20210122164501 extends SimpleMigrationStep {
if (!$table->hasColumn('moderator_token')) {
$table->addColumn('moderator_token', 'string', [
'notnull' => false,
'unique' => true,
'length' => 64
]);
}