2010-02-25 22:53:30 -05:00
|
|
|
class SchemaInfo < ActiveRecord::Base
|
2012-08-06 09:24:34 -04:00
|
|
|
if respond_to?(:table_name=)
|
|
|
|
self.table_name = 'schema_info'
|
|
|
|
else
|
|
|
|
# this is becoming deprecated in ActiveRecord but not all adapters supported it
|
|
|
|
# at this time
|
|
|
|
set_table_name 'schema_info'
|
|
|
|
end
|
2010-02-25 22:53:30 -05:00
|
|
|
VERSION = 12
|
|
|
|
end
|