diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-06 14:19:06 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-01-27 17:20:00 +0100 |
commit | d69531ac8ecabfaa2c915d5266d09971c0129a77 (patch) | |
tree | 876d8e19059e7b424cc29ef49167cdf9bf47db69 /core/Migrations | |
parent | 0c631830bba9ff49e5f281699cf2514ea2e4d54d (diff) | |
download | nextcloud-server-d69531ac8ecabfaa2c915d5266d09971c0129a77.tar.gz nextcloud-server-d69531ac8ecabfaa2c915d5266d09971c0129a77.zip |
Fix psalm not running
The issue was that we were using psalm/phar instead of vimeo/psalm. This
caused issue with the custom psalm plugin in buildd/psalm.
This is using the opportunity to also update the psalm version from 3.8
to 3.17 and the php-cs-fixer too.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version15000Date20180926101451.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version15000Date20180926101451.php b/core/Migrations/Version15000Date20180926101451.php index e379b12490d..f70a786bbcd 100644 --- a/core/Migrations/Version15000Date20180926101451.php +++ b/core/Migrations/Version15000Date20180926101451.php @@ -44,7 +44,7 @@ class Version15000Date20180926101451 extends SimpleMigrationStep { $schema = $schemaClosure(); $table = $schema->getTable('authtoken'); - $table->addColumn('password_invalid','boolean', [ + $table->addColumn('password_invalid', 'boolean', [ 'default' => 0, 'notnull' => false, ]); |