create_domain_stmt.go 253 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateDomainStmt struct {
  6. Domainname *ast.List
  7. TypeName *TypeName
  8. CollClause *CollateClause
  9. Constraints *ast.List
  10. }
  11. func (n *CreateDomainStmt) Pos() int {
  12. return 0
  13. }