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

20200911120132_create_pages_deployments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25327a7690062d0347dfca45fba8249ace1729c7 (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
25
26
27
28
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    create_table :pages_deployments, if_not_exists: true do |t|
      t.timestamps_with_timezone

      t.bigint :project_id, index: true, null: false
      t.bigint :ci_build_id, index: true

      t.integer :file_store, null: false, limit: 2
      t.integer :size, null: false
      t.text :file, null: false
    end

    add_text_limit :pages_deployments, :file, 255
  end

  def down
    drop_table :pages_deployments
  end
end