mirror of
https://github.com/friendica/friendica
synced 2025-04-23 23:10:10 +00:00
Merge pull request #4678 from annando/issue-4666
Fix: No "not null" when text is replaced by varchar
This commit is contained in:
commit
bcf9fa147e
3 changed files with 9 additions and 8 deletions
|
@ -788,9 +788,9 @@ class DBStructure
|
|||
"xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"thumb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"micro" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"photo" => ["type" => "varchar(255)", "default" => "", "comment" => ""],
|
||||
"thumb" => ["type" => "varchar(255)", "default" => "", "comment" => ""],
|
||||
"micro" => ["type" => "varchar(255)", "default" => "", "comment" => ""],
|
||||
"site-pubkey" => ["type" => "text", "comment" => ""],
|
||||
"issued-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
"dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue