debian-mirror-gitlab/db/migrate/20220902065314_create_ci_partitions.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
206 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# 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