Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
codegraph/src/db/schema.sql at lua · Inference1/codegraph · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Inference1
/
codegraph
Public
forked from
colbymchenry/codegraph
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
lua
Breadcrumbs
codegraph
/
src
/
db
/
schema.sql
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
151 lines (134 loc) · 5.61 KB
lua
Breadcrumbs
codegraph
/
src
/
db
/
schema.sql
Copy path
Top
File metadata and controls
Code
Blame
151 lines (134 loc) · 5.61 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
--
CodeGraph SQLite Schema
--
Version 1
--
Schema version tracking
CREATE
TABLE
IF
NOT EXISTS schema_versions (
version
INTEGER
PRIMARY KEY
,
applied_at
INTEGER
NOT NULL
,
description
TEXT
);
--
Insert initial version
INSERT INTO
schema_versions (version, applied_at, description)
VALUES
(
1
, strftime(
'
%s
'
,
'
now
'
)
*
1000
,
'
Initial schema
'
);
--
=============================================================================
--
Core Tables
--
=============================================================================
--
Nodes: Code symbols (functions, classes, variables, etc.)
CREATE
TABLE
IF
NOT EXISTS nodes (
id
TEXT
PRIMARY KEY
,
kind
TEXT
NOT NULL
,
name
TEXT
NOT NULL
,
qualified_name
TEXT
NOT NULL
,
file_path
TEXT
NOT NULL
,
language
TEXT
NOT NULL
,
start_line
INTEGER
NOT NULL
,
end_line
INTEGER
NOT NULL
,
start_column
INTEGER
NOT NULL
,
end_column
INTEGER
NOT NULL
,
docstring
TEXT
,
signature
TEXT
,
visibility
TEXT
,
is_exported
INTEGER
DEFAULT
0
,
is_async
INTEGER
DEFAULT
0
,
is_static
INTEGER
DEFAULT
0
,
is_abstract
INTEGER
DEFAULT
0
,
decorators
TEXT
,
--
JSON array
type_parameters
TEXT
,
--
JSON array
updated_at
INTEGER
NOT NULL
);
--
Edges: Relationships between nodes
CREATE
TABLE
IF
NOT EXISTS edges (
id
INTEGER
PRIMARY KEY
AUTOINCREMENT,
source
TEXT
NOT NULL
,
target
TEXT
NOT NULL
,
kind
TEXT
NOT NULL
,
metadata
TEXT
,
--
JSON object
line
INTEGER
,
col
INTEGER
,
provenance
TEXT
DEFAULT
NULL
,
FOREIGN KEY
(source)
REFERENCES
nodes(id)
ON DELETE CASCADE
,
FOREIGN KEY
(target)
REFERENCES
nodes(id)
ON DELETE CASCADE
);
--
Files: Tracked source files
CREATE
TABLE
IF
NOT EXISTS files (
path
TEXT
PRIMARY KEY
,
content_hash
TEXT
NOT NULL
,
language
TEXT
NOT NULL
,
size
INTEGER
NOT NULL
,
modified_at
INTEGER
NOT NULL
,
indexed_at
INTEGER
NOT NULL
,
node_count
INTEGER
DEFAULT
0
,
errors
TEXT
--
JSON array
);
--
Unresolved References: References that need resolution after full indexing
CREATE
TABLE
IF
NOT EXISTS unresolved_refs (
id
INTEGER
PRIMARY KEY
AUTOINCREMENT,
from_node_id
TEXT
NOT NULL
,
reference_name
TEXT
NOT NULL
,
reference_kind
TEXT
NOT NULL
,
line
INTEGER
NOT NULL
,
col
INTEGER
NOT NULL
,
candidates
TEXT
,
--
JSON array
file_path
TEXT
NOT NULL
DEFAULT
'
'
,
language
TEXT
NOT NULL
DEFAULT
'
unknown
'
,
FOREIGN KEY
(from_node_id)
REFERENCES
nodes(id)
ON DELETE CASCADE
);
--
=============================================================================
--
Indexes for Query Performance
--
=============================================================================
--
Node indexes
CREATE
INDEX
IF
NOT EXISTS idx_nodes_kind
ON
nodes(kind);
CREATE
INDEX
IF
NOT EXISTS idx_nodes_name
ON
nodes(name);
CREATE
INDEX
IF
NOT EXISTS idx_nodes_qualified_name
ON
nodes(qualified_name);
CREATE
INDEX
IF
NOT EXISTS idx_nodes_file_path
ON
nodes(file_path);
CREATE
INDEX
IF
NOT EXISTS idx_nodes_language
ON
nodes(language);
CREATE
INDEX
IF
NOT EXISTS idx_nodes_file_line
ON
nodes(file_path, start_line);
CREATE
INDEX
IF
NOT EXISTS idx_nodes_lower_name
ON
nodes(
lower
(name));
--
Full-text search index on node names, docstrings, and signatures
CREATE VIRTUAL TABLE IF NOT EXISTS nodes_fts USING fts5(
id,
name,
qualified_name,
docstring,
signature,
content
=
'
nodes
'
,
content_rowid
=
'
rowid
'
);
--
Triggers to keep FTS index in sync
CREATE
TRIGGER
IF
NOT EXISTS nodes_ai AFTER INSERT
ON
nodes
BEGIN
INSERT INTO
nodes_fts(rowid, id, name, qualified_name, docstring, signature)
VALUES
(
NEW
.
rowid
,
NEW
.
id
,
NEW
.
name
,
NEW
.
qualified_name
,
NEW
.
docstring
,
NEW
.
signature
);
END;
CREATE
TRIGGER
IF
NOT EXISTS nodes_ad AFTER
DELETE
ON
nodes
BEGIN
INSERT INTO
nodes_fts(nodes_fts, rowid, id, name, qualified_name, docstring, signature)
VALUES
(
'
delete
'
,
OLD
.
rowid
,
OLD
.
id
,
OLD
.
name
,
OLD
.
qualified_name
,
OLD
.
docstring
,
OLD
.
signature
);
END;
CREATE
TRIGGER
IF
NOT EXISTS nodes_au AFTER
UPDATE
ON
nodes
BEGIN
INSERT INTO
nodes_fts(nodes_fts, rowid, id, name, qualified_name, docstring, signature)
VALUES
(
'
delete
'
,
OLD
.
rowid
,
OLD
.
id
,
OLD
.
name
,
OLD
.
qualified_name
,
OLD
.
docstring
,
OLD
.
signature
);
INSERT INTO
nodes_fts(rowid, id, name, qualified_name, docstring, signature)
VALUES
(
NEW
.
rowid
,
NEW
.
id
,
NEW
.
name
,
NEW
.
qualified_name
,
NEW
.
docstring
,
NEW
.
signature
);
END;
--
Edge indexes.
--
idx_edges_source / idx_edges_target are intentionally omitted —
--
the (source, kind) and (target, kind) composites below cover the
--
corresponding source-only / target-only lookups via SQLite's
--
left-prefix scan, so the narrow indexes are dead weight on writes.
--
Migration v4 drops them on existing databases.
CREATE
INDEX
IF
NOT EXISTS idx_edges_kind
ON
edges(kind);
CREATE
INDEX
IF
NOT EXISTS idx_edges_source_kind
ON
edges(source, kind);
CREATE
INDEX
IF
NOT EXISTS idx_edges_target_kind
ON
edges(target, kind);
--
File indexes
CREATE
INDEX
IF
NOT EXISTS idx_files_language
ON
files(language);
CREATE
INDEX
IF
NOT EXISTS idx_files_modified_at
ON
files(modified_at);
--
Unresolved refs indexes
CREATE
INDEX
IF
NOT EXISTS idx_unresolved_from_node
ON
unresolved_refs(from_node_id);
CREATE
INDEX
IF
NOT EXISTS idx_unresolved_name
ON
unresolved_refs(reference_name);
CREATE
INDEX
IF
NOT EXISTS idx_unresolved_file_path
ON
unresolved_refs(file_path);
CREATE
INDEX
IF
NOT EXISTS idx_unresolved_from_name
ON
unresolved_refs(from_node_id, reference_name);
CREATE
INDEX
IF
NOT EXISTS idx_edges_provenance
ON
edges(provenance);
--
Project metadata for version/provenance tracking
CREATE
TABLE
IF
NOT EXISTS project_metadata (
key
TEXT
PRIMARY KEY
,
value
TEXT
NOT NULL
,
updated_at
INTEGER
NOT NULL
);
You can’t perform that action at this time.