0fc9f9d3e7
DB schema generated by a migration may look different in rails 4 and 5 (because rails 5 may use different default values). For this reason it's important to explicitly set for which rails version a migration was written for. See https://stackoverflow.com/questions/35929869/activerecordmigration-deprecation-warning-asks-for-rails-version-but-im-no/35930912#35930912
53 lines
1.4 KiB
Ruby
53 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class DropGcpClustersTable < ActiveRecord::Migration[4.2]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
drop_table :gcp_clusters
|
|
end
|
|
|
|
def down
|
|
create_table :gcp_clusters do |t|
|
|
# Order columns by best align scheme
|
|
t.references :project, null: false, index: { unique: true }, foreign_key: { on_delete: :cascade }
|
|
t.references :user, foreign_key: { on_delete: :nullify }
|
|
t.references :service, foreign_key: { on_delete: :nullify }
|
|
t.integer :status
|
|
t.integer :gcp_cluster_size, null: false
|
|
|
|
# Timestamps
|
|
t.datetime_with_timezone :created_at, null: false
|
|
t.datetime_with_timezone :updated_at, null: false
|
|
|
|
# Enable/disable
|
|
t.boolean :enabled, default: true
|
|
|
|
# General
|
|
t.text :status_reason
|
|
|
|
# k8s integration specific
|
|
t.string :project_namespace
|
|
|
|
# Cluster details
|
|
t.string :endpoint
|
|
t.text :ca_cert
|
|
t.text :encrypted_kubernetes_token
|
|
t.string :encrypted_kubernetes_token_iv
|
|
t.string :username
|
|
t.text :encrypted_password
|
|
t.string :encrypted_password_iv
|
|
|
|
# GKE
|
|
t.string :gcp_project_id, null: false
|
|
t.string :gcp_cluster_zone, null: false
|
|
t.string :gcp_cluster_name, null: false
|
|
t.string :gcp_machine_type
|
|
t.string :gcp_operation_id
|
|
t.text :encrypted_gcp_token
|
|
t.string :encrypted_gcp_token_iv
|
|
end
|
|
end
|
|
end
|