Merge pull request #63177 from nextcloud/fix-add-missing-`comment`-to-`$options`-array-in-ITable

Update ITable.php to include `comment`
pull/63182/head
Carl Schwan 1 week ago committed by GitHub
commit 39ca6af324
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/public/DB/Schema/ITable.php

@ -158,6 +158,7 @@ interface ITable {
* precision?: int,
* scale?: int,
* type?: Types::*|ColumnType,
* comment?: string,
* } $options
*
* @throws SchemaException
@ -177,6 +178,7 @@ interface ITable {
* precision?: int,
* scale?: int,
* type?: Types::*|ColumnType,
* comment?: string,
* } $options
*
* @throws SchemaException

Loading…
Cancel
Save