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
path: root/db
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-06-23 06:07:43 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-23 06:07:43 +0300
commit0fb62bd3e1df8e54a58382f177edc15926b6b861 (patch)
tree30d7cdd49a08aa4ff54bf615072746e36a7ab2ad /db
parentec8587780b41c8a895f2b26d60c86bf93be5e038 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20210614142311_add_running_container_scanning_max_size_to_plan_limits.rb7
-rw-r--r--db/schema_migrations/202106141423111
-rw-r--r--db/structure.sql3
3 files changed, 10 insertions, 1 deletions
diff --git a/db/migrate/20210614142311_add_running_container_scanning_max_size_to_plan_limits.rb b/db/migrate/20210614142311_add_running_container_scanning_max_size_to_plan_limits.rb
new file mode 100644
index 00000000000..248fff6c42f
--- /dev/null
+++ b/db/migrate/20210614142311_add_running_container_scanning_max_size_to_plan_limits.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class AddRunningContainerScanningMaxSizeToPlanLimits < ActiveRecord::Migration[6.0]
+ def change
+ add_column :plan_limits, :ci_max_artifact_size_running_container_scanning, :integer, null: false, default: 0
+ end
+end
diff --git a/db/schema_migrations/20210614142311 b/db/schema_migrations/20210614142311
new file mode 100644
index 00000000000..69a2472990a
--- /dev/null
+++ b/db/schema_migrations/20210614142311
@@ -0,0 +1 @@
+5dc0a4f91dc35b7720b20e89fa77374a0337c380b9234704e7d4143639e512f0 \ No newline at end of file
diff --git a/db/structure.sql b/db/structure.sql
index 032f1230f36..6d25d1c42df 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -16299,7 +16299,8 @@ CREATE TABLE plan_limits (
ci_registered_group_runners integer DEFAULT 1000 NOT NULL,
ci_registered_project_runners integer DEFAULT 1000 NOT NULL,
web_hook_calls integer DEFAULT 0 NOT NULL,
- ci_daily_pipeline_schedule_triggers integer DEFAULT 0 NOT NULL
+ ci_daily_pipeline_schedule_triggers integer DEFAULT 0 NOT NULL,
+ ci_max_artifact_size_running_container_scanning integer DEFAULT 0 NOT NULL
);
CREATE SEQUENCE plan_limits_id_seq