Flowdock
method

build_truncate_statements

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::ConnectionAdapters::DatabaseStatements
build_truncate_statements(*table_names) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb, line 466
        def build_truncate_statements(*table_names)
          truncate_tables = table_names.map do |table_name|
            "TRUNCATE TABLE #{quote_table_name(table_name)}"
          end
          combine_multi_statements(truncate_tables)
        end
Register or log in to add new notes.