gitlab-org--gitlab-foss/db/migrate/20220902065314_create_ci_pa...

10 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