6 lines
152 B
Ruby
6 lines
152 B
Ruby
# rubocop:disable all
|
|
class AddArtifactsFileToBuilds < ActiveRecord::Migration
|
|
def change
|
|
add_column :ci_builds, :artifacts_file, :text
|
|
end
|
|
end
|