Class ActiveRecord::TemporaryTable
In: ar-extensions/lib/ar-extensions/temporary_table.rb
Parent: ActiveRecord::Base

Methods

drop  

Public Class methods

Drops a temporary table from the database and removes the temporary table constant.

Example

  Project.create_temporary_table
  Object.const_defined?( :TempProject ) # => true
  TempProject.drop
  Object.const_defined?( :TempProject ) # => false

[Validate]