Method: Sequel::Database#execute_ddl
- Defined in:
- lib/sequel/database.rb
#execute_ddl(sql, opts = {}, &block) ⇒ Object
Method that should be used when submitting any DDL (Data Definition Language) SQL. By default, calls execute_dui.
275 276 277 |
# File 'lib/sequel/database.rb', line 275 def execute_ddl(sql, opts={}, &block) execute_dui(sql, opts, &block) end |