summaryrefslogtreecommitdiff
path: root/db/migrate/20190722104947_add_static_object_token_to_users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190722104947_add_static_object_token_to_users.rb')
-rw-r--r--db/migrate/20190722104947_add_static_object_token_to_users.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20190722104947_add_static_object_token_to_users.rb b/db/migrate/20190722104947_add_static_object_token_to_users.rb
deleted file mode 100644
index 3983f076b3f..00000000000
--- a/db/migrate/20190722104947_add_static_object_token_to_users.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddStaticObjectTokenToUsers < ActiveRecord::Migration[5.2]
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- # rubocop:disable Migration/AddColumnsToWideTables
- # rubocop:disable Migration/PreventStrings
- def up
- add_column :users, :static_object_token, :string, limit: 255
- end
- # rubocop:enable Migration/PreventStrings
- # rubocop:enable Migration/AddColumnsToWideTables
-
- def down
- remove_column :users, :static_object_token
- end
-end