debian-mirror-gitlab/db/migrate/20220902065314_create_ci_partitions.rb
2022-10-11 01:57:18 +05:30

9 lines
206 B
Ruby

# 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