alter_object_schema_stmt.go 269 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterObjectSchemaStmt struct {
  6. ObjectType ObjectType
  7. Relation *RangeVar
  8. Object ast.Node
  9. Newschema *string
  10. MissingOk bool
  11. }
  12. func (n *AlterObjectSchemaStmt) Pos() int {
  13. return 0
  14. }