Skip to content
代码片段 群组 项目
提交 7afcfba2 编辑于 作者: Adam Hegyi's avatar Adam Hegyi
浏览文件

Merge branch 'georgekoltsov/add-migrate-projects-to-bulk-import-entities' into 'master'

Add 'migrate_projects' column to bulk_import_entities table

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/108676



Merged-by: default avatarAdam Hegyi <ahegyi@gitlab.com>
Approved-by: default avatarLeonardo da Rosa <ldarosa@gitlab.com>
Approved-by: default avatarAdam Hegyi <ahegyi@gitlab.com>
Reviewed-by: default avatarLeonardo da Rosa <ldarosa@gitlab.com>
Co-authored-by: default avatarGeorge Koltsov <gkoltsov@gitlab.com>
No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class AddMigrateProjectsToBulkImportEntities < Gitlab::Database::Migration[2.1]
def change
add_column :bulk_import_entities, :migrate_projects, :boolean, null: false, default: true
end
end
d80ba166cee17bce1ac7825d9acdc9eeaf78aca5df276cfe2c3b2b076112dd1e
\ No newline at end of file
......@@ -12462,6 +12462,7 @@ CREATE TABLE bulk_import_entities (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
source_xid integer,
migrate_projects boolean DEFAULT true NOT NULL,
CONSTRAINT check_13f279f7da CHECK ((char_length(source_full_path) <= 255)),
CONSTRAINT check_715d725ea2 CHECK ((char_length(destination_name) <= 255)),
CONSTRAINT check_796a4d9cc6 CHECK ((char_length(jid) <= 255)),
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册