table_name=(value)
Instance Public methods
Sets the table name explicitly. Example:
class Project < ActiveRecord::Base self.table_name = "project" end
You can also just define your own self.table_name
method; see
the documentation for ActiveRecord::Base#table_name.
Please login to continue.