-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
I have the following in SQL:
CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');
Which generates the unglamorous:
type IpProtocol string
const (
IpProtocolTcp IpProtocol = "tcp"
IpProtocolIp IpProtocol = "ip"
IpProtocolIcmp IpProtocol = "icmp"
)
I'm wondering if there's a way to control the case of the generated constants.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request