debian-mirror-gitlab/db/migrate/20191002123516_create_clusters_applications_elastic_stack.rb

25 lines
874 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class CreateClustersApplicationsElasticStack < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2019-12-26 22:10:19 +05:30
def change
create_table :clusters_applications_elastic_stacks do |t|
t.timestamps_with_timezone null: false
t.references :cluster, null: false, index: false, foreign_key: { on_delete: :cascade }
t.integer :status, null: false
t.string :version, null: false, limit: 255
t.string :kibana_hostname, limit: 255
2020-05-24 23:13:21 +05:30
t.text :status_reason # rubocop:disable Migration/AddLimitToTextColumns
2019-12-26 22:10:19 +05:30
t.index :cluster_id, unique: true
end
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2019-12-26 22:10:19 +05:30
end