Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2017-11-01 10:12:44 +0300
committerShinya Maeda <shinya@gitlab.com>2017-11-01 10:12:44 +0300
commit6571efb6c3afd568c019e7bb46aba84328a4e821 (patch)
tree24d455c614cf37dac75c6e83d4d58555247bc7b0 /db
parentef3ebed6d3d3910bdf6080d6304ee7c5d5b0cc87 (diff)
Fix spec. Fix usage ping. Fix warnings by adding new models and attributes.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20171013094327_create_new_clusters_architectures.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20171013094327_create_new_clusters_architectures.rb b/db/migrate/20171013094327_create_new_clusters_architectures.rb
index 35df8cb4a60..2eae72595c6 100644
--- a/db/migrate/20171013094327_create_new_clusters_architectures.rb
+++ b/db/migrate/20171013094327_create_new_clusters_architectures.rb
@@ -22,7 +22,7 @@ class CreateNewClustersArchitectures < ActiveRecord::Migration
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 }