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
68 lines
2 KiB
Ruby
68 lines
2 KiB
Ruby
class CreateNewClustersArchitectures < ActiveRecord::Migration[4.2]
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
create_table :clusters do |t|
|
|
t.references :user, index: true, foreign_key: { on_delete: :nullify }
|
|
|
|
t.integer :provider_type
|
|
t.integer :platform_type
|
|
|
|
t.datetime_with_timezone :created_at, null: false
|
|
t.datetime_with_timezone :updated_at, null: false
|
|
|
|
t.boolean :enabled, index: true, default: true
|
|
|
|
t.string :name, null: false # If manual, read-write. If gcp, read-only.
|
|
end
|
|
|
|
create_table :cluster_projects do |t|
|
|
t.references :project, null: false, index: true, foreign_key: { on_delete: :cascade }
|
|
t.references :cluster, null: false, index: true, foreign_key: { on_delete: :cascade }
|
|
|
|
t.datetime_with_timezone :created_at, null: false
|
|
t.datetime_with_timezone :updated_at, null: false
|
|
end
|
|
|
|
create_table :cluster_platforms_kubernetes do |t|
|
|
t.references :cluster, null: false, index: { unique: true }, foreign_key: { on_delete: :cascade }
|
|
|
|
t.datetime_with_timezone :created_at, null: false
|
|
t.datetime_with_timezone :updated_at, null: false
|
|
|
|
t.text :api_url
|
|
t.text :ca_cert
|
|
|
|
t.string :namespace
|
|
|
|
t.string :username
|
|
t.text :encrypted_password
|
|
t.string :encrypted_password_iv
|
|
|
|
t.text :encrypted_token
|
|
t.string :encrypted_token_iv
|
|
end
|
|
|
|
create_table :cluster_providers_gcp do |t|
|
|
t.references :cluster, null: false, index: { unique: true }, foreign_key: { on_delete: :cascade }
|
|
|
|
t.integer :status
|
|
t.integer :num_nodes, null: false
|
|
|
|
t.datetime_with_timezone :created_at, null: false
|
|
t.datetime_with_timezone :updated_at, null: false
|
|
|
|
t.text :status_reason
|
|
|
|
t.string :gcp_project_id, null: false
|
|
t.string :zone, null: false
|
|
t.string :machine_type
|
|
t.string :operation_id
|
|
|
|
t.string :endpoint
|
|
|
|
t.text :encrypted_access_token
|
|
t.string :encrypted_access_token_iv
|
|
end
|
|
end
|
|
end
|