Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
aa6b3156
Commit
aa6b3156
authored
Oct 02, 2020
by
Michael Eddington
Committed by
Heinrich Lee Yu
Oct 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add API Fuzzing plan limits db column
parent
953eef55
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
1 deletion
+18
-1
changelogs/unreleased/258203-add-api-fuzzing-plan-limits-db.yml
...logs/unreleased/258203-add-api-fuzzing-plan-limits-db.yml
+5
-0
db/migrate/20200930132319_add_api_fuzzing_to_plan_limits.rb
db/migrate/20200930132319_add_api_fuzzing_to_plan_limits.rb
+9
-0
db/schema_migrations/20200930132319
db/schema_migrations/20200930132319
+1
-0
db/structure.sql
db/structure.sql
+2
-1
spec/models/plan_limits_spec.rb
spec/models/plan_limits_spec.rb
+1
-0
No files found.
changelogs/unreleased/258203-add-api-fuzzing-plan-limits-db.yml
0 → 100644
View file @
aa6b3156
---
title
:
Add API Fuzzing plan limits db column
merge_request
:
43934
author
:
type
:
added
db/migrate/20200930132319_add_api_fuzzing_to_plan_limits.rb
0 → 100644
View file @
aa6b3156
# frozen_string_literal: true
class
AddApiFuzzingToPlanLimits
<
ActiveRecord
::
Migration
[
6.0
]
DOWNTIME
=
false
def
change
add_column
:plan_limits
,
"ci_max_artifact_size_api_fuzzing"
,
:integer
,
default:
0
,
null:
false
end
end
db/schema_migrations/20200930132319
0 → 100644
View file @
aa6b3156
1ded640c70d5e569f0f26729c96d2dc27c528bcb045e28f073ed8fce9f918d95
\ No newline at end of file
db/structure.sql
View file @
aa6b3156
...
...
@@ -14386,7 +14386,8 @@ CREATE TABLE plan_limits (
pypi_max_file_size
bigint
DEFAULT
'3221225472'
::
bigint
NOT
NULL
,
generic_packages_max_file_size
bigint
DEFAULT
'5368709120'
::
bigint
NOT
NULL
,
golang_max_file_size
bigint
DEFAULT
104857600
NOT
NULL
,
debian_max_file_size
bigint
DEFAULT
'3221225472'
::
bigint
NOT
NULL
debian_max_file_size
bigint
DEFAULT
'3221225472'
::
bigint
NOT
NULL
,
ci_max_artifact_size_api_fuzzing
integer
DEFAULT
0
NOT
NULL
);
CREATE
SEQUENCE
plan_limits_id_seq
...
...
spec/models/plan_limits_spec.rb
View file @
aa6b3156
...
...
@@ -199,6 +199,7 @@ RSpec.describe PlanLimits do
ci_max_artifact_size_secret_detection
ci_max_artifact_size_requirements
ci_max_artifact_size_coverage_fuzzing
ci_max_artifact_size_api_fuzzing
]
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment