Skip to content
Snippets Groups Projects
Select Git revision
  • b39b3aa7fc91dcdc34f3b795e431187a028b60f1
  • main default protected
2 results

types.go

Blame
  • types.go 163 B
    package commands
    
    var FieldTypes = []string{
    	"INT",
    	"VARCHAR(255)",
    	"TEXT",
    	"DATE",
    	"DATETIME",
    	"BOOLEAN",
    	"FLOAT",
    	"DOUBLE",
    	"DECIMAL(10,2)",
    	"UUID",
    }