table_name=(value)
Instance Public methods
Sets the table name explicitly. Example:
1 2 3 | 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.