Skip to content

Commit e09772a

Browse files
author
philippe lhardy
committed
pull request checks fix
- add default string value for TEXT - add missing license header Signed-off-by: philippe lhardy <philippe.lhardy@astrolabe.coop>
1 parent 9d1901d commit e09772a

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

lib/Migration/V2/TableSchema.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ abstract class TableSchema {
247247
'access' => ['type' => Types::STRING, 'options' => ['notnull' => true, 'default' => 'private', 'length' => 1024]],
248248
'anonymous' => ['type' => Types::BIGINT, 'options' => ['notnull' => true, 'default' => 0, 'length' => 20]],
249249
'allow_maybe' => ['type' => Types::BIGINT, 'options' => ['notnull' => true, 'default' => 1, 'length' => 20]],
250-
'chosen_rank' => ['type' => Types::TEXT, 'options' => ['notnull' => true, 'default' => 1, 'length' => 200]],
250+
'chosen_rank' => ['type' => Types::TEXT, 'options' => ['notnull' => true, 'default' => '', 'length' => 200]],
251251
'allow_proposals' => ['type' => Types::STRING, 'options' => ['notnull' => true, 'default' => 'disallow', 'length' => 64]],
252252
'proposals_expire' => ['type' => Types::BIGINT, 'options' => ['notnull' => true, 'default' => 0, 'length' => 20]],
253253
'vote_limit' => ['type' => Types::BIGINT, 'options' => ['notnull' => true, 'default' => 0, 'length' => 20]],

src/components/Configuration/ConfigRankOptions.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2025 Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
5+
16
<template>
27
<div class="option-container">
38
<!-- Menu to choose the rank for this poll -->

0 commit comments

Comments
 (0)