Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTortue Torche <tortuetorche@users.noreply.github.com>2019-12-11 12:49:45 +0300
committerTortue Torche <tortuetorche@users.noreply.github.com>2019-12-11 12:49:45 +0300
commita043530e331a4bd3b2760d00aa5d9277c0a6165b (patch)
tree147e868e257aff92425c396dab5dd73046633e9c /lib/Migration
parent8a68277246de8723b28d4795955df49634c3af2e (diff)
Fix a typo in the migration of 'show_results' column in the 'polls_events' table
Signed-off-by: Tortue Torche <tortuetorche@users.noreply.github.com>
Diffstat (limited to 'lib/Migration')
-rw-r--r--lib/Migration/Version0010Date20190801063812.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Migration/Version0010Date20190801063812.php b/lib/Migration/Version0010Date20190801063812.php
index f94a08ad..4c10d567 100644
--- a/lib/Migration/Version0010Date20190801063812.php
+++ b/lib/Migration/Version0010Date20190801063812.php
@@ -88,7 +88,7 @@ class Version0010Date20190801063812 extends SimpleMigrationStep {
if (!$table->hasColumn('show_results')) {
$table->addColumn('show_results', Type::STRING, [
'notnull' => true,
- 'lenght' => 64,
+ 'length' => 64,
'default' => 'always'
]);
}