debian-mirror-gitlab/lib/gitlab/database/postgresql_adapter/dump_schema_versions_mixin.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
357 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Gitlab
module Database
module PostgresqlAdapter
module DumpSchemaVersionsMixin
extend ActiveSupport::Concern
def dump_schema_information # :nodoc:
2021-11-11 11:23:49 +05:30
Gitlab::Database::SchemaMigrations.touch_all(self) if Gitlab.dev_or_test_env?
2020-10-24 23:57:45 +05:30
nil
end
end
end
end
end