WIP: Refactor

This commit is contained in:
2026-05-10 23:31:10 +02:00
parent dedbcc4cfe
commit f50004d9b4
16 changed files with 897 additions and 585 deletions
+11
View File
@@ -0,0 +1,11 @@
package schema
// Interface that descibes a DB schema descripotor part.
// eg.: Table, Column, Constraints etc.
type SchemaDescriptor interface {
getDDL() (string, error)
GetSelectDML() (string, error)
GetInsertDML() (string, error)
GetUpdateDML() (string, error)
GetDeleteDML() (string, error)
}