bug fix in sql schema - was plain broken
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 7 Dec 2011 10:13:14 +0000 (11:13 +0100)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Wed, 7 Dec 2011 10:13:14 +0000 (11:13 +0100)
sfa/storage/sfa.sql

index 202b91f..9a2792c 100644 (file)
@@ -61,8 +61,8 @@ CREATE TABLE records (
     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, 
     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
 );
-CREATE INDEX sfa_hrn_ids on sfa (hrn);
-CREATE INDEX sfa_type_ids on sfa (type);
-CREATE INDEX sfa_authority_ids on sfa (authority);
-CREATE INDEX sfa_peer_authority_ids on sfa (peer_authority);
-CREATE INDEX sfa_pointer_ids on sfa (pointer);
+CREATE INDEX sfa_hrn_ids on records (hrn);
+CREATE INDEX sfa_type_ids on records (type);
+CREATE INDEX sfa_authority_ids on records (authority);
+CREATE INDEX sfa_peer_authority_ids on records (peer_authority);
+CREATE INDEX sfa_pointer_ids on records (pointer);