Welcome to mirror list, hosted at ThFree Co, Russian Federation.

event_for_migration.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1672da5eec8f414fc88c189adc5d5a91e815df5 (plain)
1
2
3
4
5
# This model is used to replicate events between the old "events" table and the
# new "events_for_migration" table that will replace "events" in GitLab 10.0.
class EventForMigration < ActiveRecord::Base
  self.table_name = 'events_for_migration'
end