feat(sql): Add new DML (DELETE, UPDATE)

This commit is contained in:
Björn Benouarets
2025-11-06 17:10:12 +01:00
parent 59d6c911f9
commit 4ed1cd3b88

View File

@@ -8,3 +8,7 @@ import (
func CreateTable(schema *schema.Table) (*string, error) {
return build.CreateTable(schema)
}
func Insert(schema *schema.Table) (*string, error) {
return build.Insert(schema)
}