alter_table_stmt.go 232 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterTableStmt struct {
  6. Relation *RangeVar
  7. Cmds *ast.List
  8. Relkind ObjectType
  9. MissingOk bool
  10. }
  11. func (n *AlterTableStmt) Pos() int {
  12. return 0
  13. }