]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
OAuth app name should not be null
authorZach Copley <zach@status.net>
Fri, 5 Feb 2010 01:24:21 +0000 (01:24 +0000)
committerZach Copley <zach@status.net>
Fri, 5 Feb 2010 02:09:58 +0000 (02:09 +0000)
classes/statusnet.ini
db/statusnet.sql

index a535159e808b26919b426c3dd95682ae012156bd..5f8da7cf51bd5bcf80131eb8b74d362bd38fc2a3 100644 (file)
@@ -353,7 +353,7 @@ notice_id = K
 id = 129
 owner = 129
 consumer_key = 130
-name = 2
+name = 130
 description = 2
 icon = 130
 source_url = 2
index 8946f4d7e2e47c3382fd5be211c0ecb2b3a54772..343464801662d0fd7ff37828632952214f873fb5 100644 (file)
@@ -214,7 +214,7 @@ create table oauth_application (
     id integer auto_increment primary key comment 'unique identifier',
     owner integer not null comment 'owner of the application' references profile (id),
     consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key),
-    name varchar(255) unique key comment 'name of the application',
+    name varchar(255) not null unique key comment 'name of the application',
     description varchar(255) comment 'description of the application',
     icon varchar(255) not null comment 'application icon',
     source_url varchar(255) comment 'application homepage - used for source link',