summaryrefslogtreecommitdiff
path: root/db/migrate/20191127151619_create_gitlab_subscription_histories.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-05 12:07:43 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-05 12:07:43 +0000
commit872319738757edc0483346c75a2407f7019b963f (patch)
treed5953edec6184dda1f53c5994c3ebcebc9e815a2 /db/migrate/20191127151619_create_gitlab_subscription_histories.rb
parent8f764d21b0011056e1492d92afe3bd40b847b9f7 (diff)
downloadgitlab-ce-872319738757edc0483346c75a2407f7019b963f.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate/20191127151619_create_gitlab_subscription_histories.rb')
-rw-r--r--db/migrate/20191127151619_create_gitlab_subscription_histories.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/db/migrate/20191127151619_create_gitlab_subscription_histories.rb b/db/migrate/20191127151619_create_gitlab_subscription_histories.rb
new file mode 100644
index 00000000000..718f2c1b313
--- /dev/null
+++ b/db/migrate/20191127151619_create_gitlab_subscription_histories.rb
@@ -0,0 +1,28 @@
+# frozen_string_literal: true
+
+class CreateGitlabSubscriptionHistories < ActiveRecord::Migration[5.2]
+ DOWNTIME = false
+
+ def up
+ create_table :gitlab_subscription_histories do |t|
+ t.datetime_with_timezone :gitlab_subscription_created_at
+ t.datetime_with_timezone :gitlab_subscription_updated_at
+ t.date :start_date
+ t.date :end_date
+ t.date :trial_ends_on
+ t.integer :namespace_id, null: true
+ t.integer :hosted_plan_id, null: true
+ t.integer :max_seats_used
+ t.integer :seats
+ t.boolean :trial
+ t.integer :change_type, limit: 2
+ t.bigint :gitlab_subscription_id, null: false
+ t.datetime_with_timezone :created_at
+ end
+ add_index :gitlab_subscription_histories, :gitlab_subscription_id
+ end
+
+ def down
+ drop_table :gitlab_subscription_histories
+ end
+end