class QueryBuilder::CQL::Statements::DropTrigger

Describes the ‘DROP TRIGGER’ CQL3 statement

Public Instance Methods

to_s() click to toggle source

Builds the statement

@return [String]

# File lib/query_builder/cql/statements/drop_trigger.rb, line 17
def to_s
  cql["DROP TRIGGER", maybe_if, context.name, "ON", context.table.to_s]
end