Skip to content
Snippets Groups Projects
Commit e2038fab authored by Simon Künzel's avatar Simon Künzel
Browse files

Remove nullability of authentication_information

parent f3eea35e
No related branches found
No related tags found
No related merge requests found
...@@ -404,7 +404,7 @@ class Course(DeletableApiObject, VisibilityApiObject, ApiViewPermissionsObject, ...@@ -404,7 +404,7 @@ class Course(DeletableApiObject, VisibilityApiObject, ApiViewPermissionsObject,
) )
) )
authentication_information: Mapped[str] = api_mapped( authentication_information: Mapped[str] = api_mapped(
mapped_column(Text(collation=STRING_COLLATION), nullable=True, default=None), mapped_column(Text(collation=STRING_COLLATION), nullable=False, default=""),
ApiStringField( ApiStringField(
max_length=8192, max_length=8192,
include_in_config=True, include_in_config=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment