summaryrefslogtreecommitdiff
path: root/db/migrate/20200402185044_create_clusters_applications_fluentd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200402185044_create_clusters_applications_fluentd.rb')
-rw-r--r--db/migrate/20200402185044_create_clusters_applications_fluentd.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/db/migrate/20200402185044_create_clusters_applications_fluentd.rb b/db/migrate/20200402185044_create_clusters_applications_fluentd.rb
deleted file mode 100644
index 2116b2ffe01..00000000000
--- a/db/migrate/20200402185044_create_clusters_applications_fluentd.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# frozen_string_literal: true
-
-class CreateClustersApplicationsFluentd < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- create_table :clusters_applications_fluentd do |t|
- t.integer :protocol, null: false, limit: 2
- t.integer :status, null: false
- t.integer :port, null: false
- t.references :cluster, null: false, index: { unique: true }, foreign_key: { on_delete: :cascade }
- t.timestamps_with_timezone null: false
- t.string :version, null: false, limit: 255
- t.string :host, null: false, limit: 255
- t.text :status_reason # rubocop:disable Migration/AddLimitToTextColumns
- end
- end
- # rubocop:enable Migration/PreventStrings
-end