create_schema_stmt.go 241 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateSchemaStmt struct {
  6. Schemaname *string
  7. Authrole *RoleSpec
  8. SchemaElts *ast.List
  9. IfNotExists bool
  10. }
  11. func (n *CreateSchemaStmt) Pos() int {
  12. return 0
  13. }