method

reset_column_information

rails latest stable - Class: ActiveRecord::Base

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.1.0) is shown here.

reset_column_information()
public

Resets all the cached information about columns, which will cause them to be reloaded on the next request.

The most common usage pattern for this method is probably in a migration, when just after creating a table you want to populate it with some default values, eg:

class CreateJobLevels < ActiveRecord::Migration
  def self.up
    create_table :job_levels do |t|
      t.integer :id
      t.string :name

      t.timestamps
    end

    JobLevel.reset_column_information
    %w{assistant executive manager director}.each do |type|
      JobLevel.create(:name => type)
    end
  end

  def self.down
    drop_table :job_levels
  end
end

1Note

Useful in migrations

hosiawak ยท Sep 2, 20085 thanks

The most common usage pattern for this method is probably in a migration, when just after creating a table you want to populate it with some default values, eg:

class CreateJobLevels < ActiveRecord::Migration
def self.up
  create_table :job_levels do |t|
    t.integer :id
    t.string :name

    t.timestamps
  end

  JobLevel.reset_column_information
  %w{assistant executive manager director}.each do |type|
    JobLevel.create(:name => type)
  end
end

def self.down
  drop_table :job_levels
end
end