summaryrefslogtreecommitdiff
path: root/db/migrate/20210510083845_add_sha_to_status_check_response.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210510083845_add_sha_to_status_check_response.rb')
-rw-r--r--db/migrate/20210510083845_add_sha_to_status_check_response.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20210510083845_add_sha_to_status_check_response.rb b/db/migrate/20210510083845_add_sha_to_status_check_response.rb
deleted file mode 100644
index 202f5ca00c1..00000000000
--- a/db/migrate/20210510083845_add_sha_to_status_check_response.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddShaToStatusCheckResponse < ActiveRecord::Migration[6.0]
- def up
- execute('DELETE FROM status_check_responses')
-
- add_column :status_check_responses, :sha, :binary, null: false # rubocop:disable Rails/NotNullColumn
- end
-
- def down
- remove_column :status_check_responses, :sha
- end
-end