(name, typ string, nullable bool)
| 55 | } |
| 56 | |
| 57 | func makeColumn(name, typ string, nullable bool) map[string]any { |
| 58 | return map[string]any{ |
| 59 | "name": name, |
| 60 | "type": typ, |
| 61 | "nullable": nullable, |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | func makeColumnWithDefault(name, typ, defaultVal, comment string) map[string]any { |
| 66 | c := makeColumn(name, typ, false) |
no outgoing calls
no test coverage detected