mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Remove default from backend columns
https://dev.mysql.com/doc/refman/8.0/en/blob.html BLOB and TEXT columns cannot have DEFAULT values.
This commit is contained in:
parent
75daf96590
commit
9342888bd5
1 changed files with 2 additions and 2 deletions
|
@ -955,8 +955,8 @@ return [
|
|||
"allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
|
||||
"deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
|
||||
"deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
|
||||
"backend-class" => ["type" => "tinytext", "default" => "", "comment" => "Storage backend class"],
|
||||
"backend-ref" => ["type" => "text", "default" => "", "comment" => "Storage backend data reference"]
|
||||
"backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
|
||||
"backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"]
|
||||
],
|
||||
"indexes" => [
|
||||
"PRIMARY" => ["id"],
|
||||
|
|
Loading…
Reference in a new issue