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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20211011004242_create_content_blocked_states.rb')
-rw-r--r--db/migrate/20211011004242_create_content_blocked_states.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20211011004242_create_content_blocked_states.rb b/db/migrate/20211011004242_create_content_blocked_states.rb
deleted file mode 100644
index d70717f9786..00000000000
--- a/db/migrate/20211011004242_create_content_blocked_states.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class CreateContentBlockedStates < Gitlab::Database::Migration[1.0]
- def change
- create_table :content_blocked_states, comment: 'JiHu-specific table' do |t|
- t.timestamps_with_timezone null: false
- t.binary :commit_sha, null: false
- t.binary :blob_sha, null: false
- t.text :path, null: false, limit: 2048
- t.text :container_identifier, null: false, limit: 255
-
- t.index [:container_identifier, :commit_sha, :path], name: 'index_content_blocked_states_on_container_id_commit_sha_path', unique: true
- end
- end
-end