2010-02-26 04:53:30 +01:00
|
|
|
class SchemaInfo < ActiveRecord::Base
|
2012-08-06 15:24:34 +02: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-26 04:53:30 +01:00
|
|
|
VERSION = 12
|
|
|
|
end
|