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:
Diffstat (limited to 'db/migrate/20180424134533_create_application_setting_terms.rb')
-rw-r--r--db/migrate/20180424134533_create_application_setting_terms.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20180424134533_create_application_setting_terms.rb b/db/migrate/20180424134533_create_application_setting_terms.rb
deleted file mode 100644
index 41edb8a9559..00000000000
--- a/db/migrate/20180424134533_create_application_setting_terms.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class CreateApplicationSettingTerms < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/AddLimitToTextColumns
- def change
- create_table :application_setting_terms do |t|
- t.integer :cached_markdown_version
- t.text :terms, null: false
- t.text :terms_html
- end
- end
- # rubocop:enable Migration/AddLimitToTextColumns
-end