alter_table_cmd.go 276 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterTableCmd struct {
  6. Subtype AlterTableType
  7. Name *string
  8. Newowner *RoleSpec
  9. Def ast.Node
  10. Behavior DropBehavior
  11. MissingOk bool
  12. }
  13. func (n *AlterTableCmd) Pos() int {
  14. return 0
  15. }