debian-mirror-gitlab/lib/gitlab/database/migrations/observers/migration_observer.rb
2021-03-11 19:13:27 +05:30

29 lines
565 B
Ruby

# frozen_string_literal: true
module Gitlab
module Database
module Migrations
module Observers
class MigrationObserver
attr_reader :connection
def initialize
@connection = ActiveRecord::Base.connection
end
def before
# implement in subclass
end
def after
# implement in subclass
end
def record(observation)
raise NotImplementedError, 'implement in subclass'
end
end
end
end
end
end