5 # NOTE: Currently the Migrations system will ALWAYS wrap given table names
6 # in the prefix/suffix, so any table name set via config(:table_name), for instnace
7 # will always get wrapped in the process of migration. For this reason, whatever
8 # value you give to the config will be wrapped when set_table_name is used in the
11 def wrapped_table_name(name)
12 table_name_prefix + name + table_name_suffix
18 # Set ActiveRecord to ignore the engine_schema_info table by default
19 unless Rails::VERSION::STRING =~ /^1\.0\./
20 ::ActiveRecord::SchemaDumper.ignore_tables << 'engine_schema_info'