]> git.mxchange.org Git - friendica.git/commitdiff
No "not null"
authorMichael <heluecht@pirati.ca>
Wed, 18 Nov 2020 00:31:05 +0000 (00:31 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 18 Nov 2020 00:31:05 +0000 (00:31 +0000)
database.sql
static/dbstructure.config.php

index a4f6aa636c3e3bc36f91c9101640922fd98f2202..e2b333a6da58b4444c72c967533e0899b6fde291 100644 (file)
@@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `gserver` (
 --
 CREATE TABLE IF NOT EXISTS `user` (
        `uid` mediumint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
-       `parent-uid` mediumint unsigned NOT NULL COMMENT 'The parent user that has full control about this user',
+       `parent-uid` mediumint unsigned COMMENT 'The parent user that has full control about this user',
        `guid` varchar(64) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this user',
        `username` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this user is known by',
        `password` varchar(255) NOT NULL DEFAULT '' COMMENT 'encrypted password',
index e7262224592f21a724723bd3ff3e5bda6c04aa8c..e952675fefa92aba747ed3b6b20f06773afb84ba 100644 (file)
@@ -94,7 +94,7 @@ return [
                "comment" => "The local users",
                "fields" => [
                        "uid" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
-                       "parent-uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"],
+                       "parent-uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"],
                                "comment" => "The parent user that has full control about this user"],
                        "guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this user"],
                        "username" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Name that this user is known by"],