diff options
author | Chris Baumbauer <cab@cabnetworks.net> | 2018-11-01 08:14:49 -0700 |
---|---|---|
committer | Chris Baumbauer <cab@cabnetworks.net> | 2018-11-01 08:14:49 -0700 |
commit | 28a9bbceb7ab5ffe2305db02052d663b1e68ab8e (patch) | |
tree | 06a68621e4c33818c053e06b764aa7859b9cea84 /db | |
parent | 0a62588be7a6d6c95d4989eefbdb263f00e9966b (diff) | |
download | gitlab-ce-28a9bbceb7ab5ffe2305db02052d663b1e68ab8e.tar.gz |
Remove comments from migration script and add usage data
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180912111628_add_knative_application.rb | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20180912111628_add_knative_application.rb b/db/migrate/20180912111628_add_knative_application.rb index d80da02e26d..cbebc58c1e1 100644 --- a/db/migrate/20180912111628_add_knative_application.rb +++ b/db/migrate/20180912111628_add_knative_application.rb @@ -1,32 +1,10 @@ # 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 AddKnativeApplication < ActiveRecord::Migration include Gitlab::Database::MigrationHelpers - # Set this constant to true if this migration requires downtime. DOWNTIME = false - # When a migration requires downtime you **must** uncomment the following - # constant and define a short and easy to understand explanation as to why the - # migration requires downtime. - # DOWNTIME_REASON = '' - - # When using the methods "add_concurrent_index", "remove_concurrent_index" or - # "add_column_with_default" you must disable the use of transactions - # as these methods can not run in an existing transaction. - # When using "add_concurrent_index" or "remove_concurrent_index" methods make sure - # that either of them is the _only_ method called in the migration, - # any other changes should go in a separate migration. - # This ensures that upon failure _only_ the index creation or removing fails - # and can be retried or reverted easily. - # - # To disable transactions uncomment the following line and remove these - # comments: - # disable_ddl_transaction! - def change create_table "clusters_applications_knative" do |t| t.references :cluster, null: false, unique: true, foreign_key: { on_delete: :cascade } |