debian-mirror-gitlab/db/migrate/20180912111628_add_knative_application.rb

23 lines
721 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2019-02-15 15:39:39 +05:30
class AddKnativeApplication < ActiveRecord::Migration[4.2]
2018-12-13 13:39:08 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2018-12-13 13:39:08 +05:30
def change
create_table "clusters_applications_knative" do |t|
t.references :cluster, null: false, unique: true, foreign_key: { on_delete: :cascade }
t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false
t.integer "status", null: false
t.string "version", null: false
t.string "hostname"
2020-05-24 23:13:21 +05:30
t.text "status_reason" # rubocop:disable Migration/AddLimitToTextColumns
2018-12-13 13:39:08 +05:30
end
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2018-12-13 13:39:08 +05:30
end