method
current_version
current_version()
public
Hide source
# File activerecord/lib/active_record/migration.rb, line 413 def current_version sm_table = schema_migrations_table_name if Base.connection.table_exists?(sm_table) get_all_versions.max || 0 else 0 end end