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

20221225010105_create_remote_development_agent_configs_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f375f78b616099cfcc31339d184e4b525f58ed53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class CreateRemoteDevelopmentAgentConfigsTable < Gitlab::Database::Migration[2.1]
  def up
    create_table :remote_development_agent_configs do |t|
      t.timestamps_with_timezone null: false
      t.bigint :cluster_agent_id, null: false, index: true
      t.boolean :enabled, null: false
      t.text :dns_zone, null: false, limit: 256
    end
  end

  def down
    drop_table :remote_development_agent_configs
  end
end