diff options
Diffstat (limited to 'transform/schema.scm')
| -rw-r--r-- | transform/schema.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/transform/schema.scm b/transform/schema.scm index cdfc834..f3896a7 100644 --- a/transform/schema.scm +++ b/transform/schema.scm @@ -89,14 +89,14 @@ is a <table> object." (table-name table))))) (triple table-id 'rdf:type 'gn:sqlTable) (triple table-id 'gn:name (table-name table)) - (triple table-id 'gn:hasSize (table-size table)) + (triple table-id 'gn:has_size (table-size table)) (for-each (lambda (column) (let ((column-id (column-id (table-name table) (column-name column)))) - (triple column-id 'rdf:type 'gn:sqlTableField) + (triple column-id 'rdf:type 'gn:sql_table_field) (triple column-id 'gn:name (column-name column)) - (triple column-id 'gn:sqlFieldType (column-type column)) - (triple table-id 'gn:hasField column-id))) + (triple column-id 'gn:sql_field_type (column-type column)) + (triple table-id 'gn:has_field column-id))) (table-columns table)))) tables))) |
