mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
9 lines
239 B
Ruby
9 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSecureFilesMetadata < Gitlab::Database::Migration[2.0]
|
|
def change
|
|
add_column :ci_secure_files, :metadata, :jsonb
|
|
add_column :ci_secure_files, :expires_at, :datetime_with_timezone
|
|
end
|
|
end
|