]> gitweb.factorcode.org Git - factor.git/commitdiff
fix load errors
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 29 Apr 2008 05:43:58 +0000 (00:43 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 29 Apr 2008 05:43:58 +0000 (00:43 -0500)
extra/http/server/auth/providers/db/db.factor
extra/semantic-db/semantic-db.factor

index deab40e8d484a313e67c7385bab701e718682be1..dba91791f6a1758d4b1577ac81176817f69c5788 100755 (executable)
@@ -7,7 +7,7 @@ IN: http.server.auth.providers.db
 
 user "USERS"
 {
-    { "username" "USERNAME" { VARCHAR 256 } +assigned-id+ }
+    { "username" "USERNAME" { VARCHAR 256 } +user-assigned-id+ }
     { "realname" "REALNAME" { VARCHAR 256 } }
     { "password" "PASSWORD" { VARCHAR 256 } +not-null+ }
     { "email" "EMAIL" { VARCHAR 256 } }
index 4591f6bf08c996fe4b2beea463c5ce0c75379428..3ecda9758413a4cf7ac52fc3f3713266e716b63d 100755 (executable)
@@ -53,7 +53,7 @@ TUPLE: arc id relation subject object ;
 
 arc "arc"
 {
-    { "id" "id" INTEGER +assigned-id+ } ! foreign key to node table?
+    { "id" "id" INTEGER +user-assigned-id+ } ! foreign key to node table?
     { "relation" "relation" INTEGER +not-null+ }
     { "subject" "subject" INTEGER +not-null+ }
     { "object" "object" INTEGER +not-null+ }