summaryrefslogtreecommitdiff
path: root/db/migrate/20201021085007_create_analytics_devops_adoption_segments.rb
blob: 3e322675ba6064dbf95b657d8ac012a8433116d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class CreateAnalyticsDevopsAdoptionSegments < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    create_table :analytics_devops_adoption_segments, if_not_exists: true do |t|
      t.text :name, null: false, index: { unique: true }
      t.datetime_with_timezone :last_recorded_at

      t.timestamps_with_timezone
    end

    add_text_limit :analytics_devops_adoption_segments, :name, 255
  end

  def down
    drop_table :analytics_devops_adoption_segments
  end
end