Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-10 00:07:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-10 00:07:17 +0300
commit94a2edbe7984384df4c3fb7efa308af2e0f42d8c (patch)
tree96b563670ef5d790a4e97f8d153dc667d971ef64 /doc/development/application_limits.md
parent7d8fc3b6b67a22969cd1fa5cb018fc22e6aa1ade (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/application_limits.md')
-rw-r--r--doc/development/application_limits.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/application_limits.md b/doc/development/application_limits.md
index b64d25ccf64..b1efc11db62 100644
--- a/doc/development/application_limits.md
+++ b/doc/development/application_limits.md
@@ -38,7 +38,7 @@ It's recommended to create two separate migration script files.
desired limit using `create_or_update_plan_limit` migration helper, such as:
```ruby
- class InsertProjectHooksPlanLimits < Gitlab::Database::Migration[2.0]
+ class InsertProjectHooksPlanLimits < Gitlab::Database::Migration[2.1]
def up
create_or_update_plan_limit('project_hooks', 'default', 0)
create_or_update_plan_limit('project_hooks', 'free', 10)