summaryrefslogtreecommitdiff
path: root/db/migrate/20220902065314_create_ci_partitions.rb
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