aboutsummaryrefslogtreecommitdiff
path: root/transform
diff options
context:
space:
mode:
authorMunyoki Kilyungi2026-01-14 20:43:50 +0300
committerMunyoki Kilyungi2026-01-14 20:43:50 +0300
commit02033b4eee1ad80707b38466b2a286a4e7baa0a7 (patch)
treeb69e83adce07af728e2b18bbd8753799efccab70 /transform
parentcd9ce5f4f7ca0eefc255eb695f6728b1a7ee13c7 (diff)
downloadgn-transform-databases-02033b4eee1ad80707b38466b2a286a4e7baa0a7.tar.gz
Replace camelCase with snake_case.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'transform')
-rw-r--r--transform/schema.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/transform/schema.scm b/transform/schema.scm
index d620882..f3896a7 100644
--- a/transform/schema.scm
+++ b/transform/schema.scm
@@ -93,10 +93,10 @@ is a <table> object."
(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)))