Commit 674e90da authored by Max Woolf's avatar Max Woolf Committed by Steve Abrams

Drop group_id from compliance_management_frameworks table

Compliance management frameworks are assigned to namespaces
not groups. This column was ignored in 13.6 and has
been eligible for deletion since 2020-12-06.
parent f8b6dbab
---
title: Drop group_id column from compliance_management_frameworks table
merge_request: 50829
author:
type: removed
# frozen_string_literal: true
class DeleteColumnGroupIdOnComplianceFramework < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
remove_column :compliance_management_frameworks, :group_id, :bigint
end
end
0a318fbcf54860d9fe8b3e8372e10331d2b52df738e621f4b0eec5fd4f255739
\ No newline at end of file
......@@ -11418,7 +11418,6 @@ ALTER SEQUENCE commit_user_mentions_id_seq OWNED BY commit_user_mentions.id;
CREATE TABLE compliance_management_frameworks (
id bigint NOT NULL,
group_id bigint,
name text NOT NULL,
description text NOT NULL,
color text NOT NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment