ExSQL.AST.DropTable (exsql v0.1.4)

Copy Markdown

A DROP TABLE [IF EXISTS] ... statement.

Summary

Types

t()

@type t() :: %ExSQL.AST.DropTable{
  if_exists: boolean(),
  name: String.t(),
  schema: String.t() | nil
}