This commit is contained in:
Björn Benouarets
2025-11-05 14:54:58 +01:00
commit f2faff5228
6 changed files with 253 additions and 0 deletions

9
schema/check.go Normal file
View File

@@ -0,0 +1,9 @@
package schema
var (
requiredAttributes = [2]string{"name", "type"}
)
func (t *Table) Validate() error {
return nil
}