]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
registered_user_id can be null
authorEvan Prodromou <evan@status.net>
Mon, 23 May 2011 21:23:54 +0000 (17:23 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 23 May 2011 21:23:54 +0000 (17:23 -0400)
classes/statusnet.ini
db/core.php

index 017c4dd58e6da92207c7b0a884038da35fa8f50b..c5c126a133003823b80a123555e602d2b8ab17eb 100644 (file)
@@ -258,7 +258,7 @@ user_id = 129
 address = 130
 address_type = 130
 created = 142
-registered_user_id = 129
+registered_user_id = 1
 
 [invitation__keys]
 code = K
index f8e4af9843cf360506edc9cdd07d07bc809baed9..626672bf5fea3e5bdc5428c3652c534ed8d013c9 100644 (file)
@@ -542,7 +542,7 @@ $schema['invitation'] = array(
         'address' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'invitation sent to'),
         'address_type' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'address type ("email", "xmpp", "sms")'),
         'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
-        'registered_user_id' => array('type' => 'int', 'not null' => true, 'description' => 'if the invitation is converted, who the new user is'),
+        'registered_user_id' => array('type' => 'int', 'not null' => false, 'description' => 'if the invitation is converted, who the new user is'),
     ),
     'primary key' => array('code'),
     'foreign keys' => array(