summaryrefslogtreecommitdiff
path: root/db/migrate/20200401095430_add_jsonb_to_geo_node_status_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200401095430_add_jsonb_to_geo_node_status_table.rb')
-rw-r--r--db/migrate/20200401095430_add_jsonb_to_geo_node_status_table.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20200401095430_add_jsonb_to_geo_node_status_table.rb b/db/migrate/20200401095430_add_jsonb_to_geo_node_status_table.rb
deleted file mode 100644
index 46eb826341c..00000000000
--- a/db/migrate/20200401095430_add_jsonb_to_geo_node_status_table.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-# See https://docs.gitlab.com/ee/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddJsonbToGeoNodeStatusTable < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def change
- change_table :geo_node_statuses do |t|
- t.jsonb :status, null: false, default: {}
- end
- end
-end