summaryrefslogtreecommitdiff
path: root/db/migrate/20190722104947_add_static_object_token_to_users.rb
blob: 3983f076b3f2af9e63af9944b47e7cb26f6a0188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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