Method: Sequel::Database#drop_table_sql

Defined in:
lib/sequel/database/schema_sql.rb

#drop_table_sql(name) ⇒ Object

SQL DDL statement to drop the table with the given name.



135
136
137
# File 'lib/sequel/database/schema_sql.rb', line 135

def drop_table_sql(name)
  "DROP TABLE #{quote_schema_table(name)}"
end