diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-11 18:06:27 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-11 18:06:27 +0000 |
commit | ff67e3ed08355fb2d6f6e69d4ed06cd09052e573 (patch) | |
tree | 97ac29ddd32b612343b34bbdd6b8d57526b3d308 /db | |
parent | 7071f9bf3e131a7a668922ee450da529f1866b6f (diff) | |
download | gitlab-ce-ff67e3ed08355fb2d6f6e69d4ed06cd09052e573.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20191104205020_add_license_details_to_application_settings.rb | 11 | ||||
-rw-r--r-- | db/schema.rb | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20191104205020_add_license_details_to_application_settings.rb b/db/migrate/20191104205020_add_license_details_to_application_settings.rb new file mode 100644 index 00000000000..f951ae6492d --- /dev/null +++ b/db/migrate/20191104205020_add_license_details_to_application_settings.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +class AddLicenseDetailsToApplicationSettings < ActiveRecord::Migration[5.2] + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def change + add_column :application_settings, :license_trial_ends_on, :date, null: true + end +end diff --git a/db/schema.rb b/db/schema.rb index a43e1c70ad5..c11c1059fd2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -345,6 +345,7 @@ ActiveRecord::Schema.define(version: 2019_11_05_140942) do t.boolean "pendo_enabled", default: false, null: false t.string "pendo_url", limit: 255 t.integer "deletion_adjourned_period", default: 7, null: false + t.date "license_trial_ends_on" t.boolean "eks_integration_enabled", default: false, null: false t.string "eks_account_id", limit: 128 t.string "eks_access_key_id", limit: 128 |