refactor(schema): consolidate schema definition to single source of truth

This commit is contained in:
2026-04-15 08:10:39 -04:00
parent dfd61f899a
commit ac343a5477
5 changed files with 57 additions and 58 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: all build generate-schema
all: build
build:
go build -o codexis .
generate-schema:
@sed 's/^/-- /' db/schema.sql > extension/schema.sql
@echo "Generated extension/schema.sql"
clean:
rm -f codexis extension/schema.sql