Skip to content

Commit cbad65f

Browse files
committed
Fix non nullable
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
1 parent 9d6334e commit cbad65f

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.3.1] - 2021-02-02
8+
### Fixed
9+
- Make column explitly nullable
10+
711
## [0.3.0] - 2021-02-02
812
### Added
913
- NC 21 support

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<name>OpenID Connect user backend</name>
66
<summary>Use an openID connect backed to login to your Nextcloud</summary>
77
<description>Allow configuring an OIDC server as Nextcloud user backend.</description>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99
<licence>agpl</licence>
1010
<author>Roeland Jago Douma</author>
1111
<namespace>UserOIDC</namespace>

lib/Migration/Version00005Date20200428123958.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
2828
$table->addColumn('display_name', 'string', [
2929
'length' => 255,
3030
'default' => '',
31+
'notnull' => false,
3132
]);
3233

3334
return $schema;

0 commit comments

Comments
 (0)