feat(sql): Add new DML (DELETE, UPDATE)
This commit is contained in:
4
query.go
4
query.go
@@ -8,3 +8,7 @@ import (
|
|||||||
func CreateTable(schema *schema.Table) (*string, error) {
|
func CreateTable(schema *schema.Table) (*string, error) {
|
||||||
return build.CreateTable(schema)
|
return build.CreateTable(schema)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Insert(schema *schema.Table) (*string, error) {
|
||||||
|
return build.Insert(schema)
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user