From 02033b4eee1ad80707b38466b2a286a4e7baa0a7 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Wed, 14 Jan 2026 20:43:50 +0300 Subject: Replace camelCase with snake_case. Signed-off-by: Munyoki Kilyungi --- examples/schema.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/schema.scm') diff --git a/examples/schema.scm b/examples/schema.scm index 5d74d27..4bde895 100755 --- a/examples/schema.scm +++ b/examples/schema.scm @@ -37,10 +37,10 @@ (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))) -- cgit 1.4.1