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

20220902065314_create_ci_partitions.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a8a4f172f86c80b2ebfaead4514ed2c9c610036 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class CreateCiPartitions < Gitlab::Database::Migration[2.0]
  def change
    create_table :ci_partitions do |t|
      t.timestamps_with_timezone null: false
    end
  end
end