Flowdock
method

build_truncate_statements

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: 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/postgresql/database_statements.rb, line 167
          def build_truncate_statements(*table_names)
            "TRUNCATE TABLE #{table_names.map(&method(:quote_table_name)).join(", ")}"
          end
Register or log in to add new notes.