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/20220627122229_create_user_namespace_callouts.rb')
-rw-r--r--db/migrate/20220627122229_create_user_namespace_callouts.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20220627122229_create_user_namespace_callouts.rb b/db/migrate/20220627122229_create_user_namespace_callouts.rb
deleted file mode 100644
index fc85c02d2db..00000000000
--- a/db/migrate/20220627122229_create_user_namespace_callouts.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-class CreateUserNamespaceCallouts < Gitlab::Database::Migration[2.0]
- def up
- create_table :user_namespace_callouts do |t|
- t.bigint :user_id, null: false
- t.bigint :namespace_id, null: false, index: true
- t.datetime_with_timezone :dismissed_at
- t.integer :feature_name, limit: 2, null: false
- end
- end
-
- def down
- drop_table :user_namespace_callouts
- end
-end