Implement DML func and related tests
Go Tests / test (push) Failing after 6s

This commit is contained in:
2026-05-04 21:33:29 +02:00
parent 852b5e5888
commit 01336bb911
11 changed files with 538 additions and 38 deletions
+2 -1
View File
@@ -43,7 +43,8 @@ func NewORM(objs ...any) *ORM {
return &ORM{cache: cache}
}
func (orm *ORM) CreateDDL() string {
// Builds the DDL and returns it as a string
func (orm ORM) CreateDDL() string {
var ddl strings.Builder
tables := orm.cache.GetAll()