Flowdock
method

truncate_tables

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

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 184
      def truncate_tables(*table_names) # :nodoc:
        return if table_names.empty?

        with_multi_statements do
          disable_referential_integrity do
            Array(build_truncate_statements(*table_names)).each do |sql|
              execute_batch(sql, "Truncate Tables")
            end
          end
        end
      end
Register or log in to add new notes.