class DataMigrate::DataSchemaMigration

Public Class Methods

index_name() click to toggle source
# File lib/data_migrate/data_schema_migration.rb, line 8
def index_name
  "#{table_name_prefix}unique_data_migrations#{table_name_suffix}"
end
table_name() click to toggle source
# File lib/data_migrate/data_schema_migration.rb, line 4
def table_name
  ActiveRecord::Base.table_name_prefix + 'data_migrations' + ActiveRecord::Base.table_name_suffix
end