diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2017-09-29 19:02:02 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2017-10-07 11:46:23 +0200 |
commit | df7f530d843ca03cfdff65b2bb230e00ec60b371 (patch) | |
tree | 7f2d9939eb2a3ec44166e618090740b3f9a0e032 /db | |
parent | e8ca579d88703aeeaa64dbf4ac45f73a60181568 (diff) | |
download | gitlab-ce-df7f530d843ca03cfdff65b2bb230e00ec60b371.tar.gz |
Add a migration to populate fork networks
This uses the existing ForkedProjectLinks
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170929131201_populate_fork_networks.rb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/db/migrate/20170929131201_populate_fork_networks.rb b/db/migrate/20170929131201_populate_fork_networks.rb new file mode 100644 index 00000000000..1214962770f --- /dev/null +++ b/db/migrate/20170929131201_populate_fork_networks.rb @@ -0,0 +1,30 @@ +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class PopulateForkNetworks < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + MIGRATION = 'PopulateForkNetworksRange'.freeze + BATCH_SIZE = 100 + DELAY_INTERVAL = 15.seconds + + disable_ddl_transaction! + + class ForkedProjectLink < ActiveRecord::Base + include EachBatch + + self.table_name = 'forked_project_links' + end + + def up + say 'Populating the `fork_networks` based on existing `forked_project_links`' + + queue_background_migration_jobs_by_range_at_intervals(ForkedProjectLink, MIGRATION, DELAY_INTERVAL, batch_size: BATCH_SIZE) + end + + def down + # nothing + end +end |