Class: PactBroker::DB::Version

Inherits:
Object
  • Object
show all
Defined in:
lib/pact_broker/db/version.rb

Class Method Summary collapse

Class Method Details

.call(database_connection) ⇒ Object



4
5
6
7
8
9
10
11
12
13
# File 'lib/pact_broker/db/version.rb', line 4

def self.call database_connection
  if database_connection.tables.include?(:schema_migrations)
    last_migration_filename = database_connection[:schema_migrations].order(:filename).last[:filename]
    last_migration_filename.split("_", 2).first.to_i
  elsif database_connection.tables.include?(:schema_info)
    database_connection[:schema_info].first[:version]
  else
    0
  end
end