2018-11-13 02:27:31 -05:00
|
|
|
class CreateClustersKubernetesHelmApps < ActiveRecord::Migration[4.2]
|
2017-11-02 11:57:18 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2017-11-02 06:14:10 -04:00
|
|
|
def change
|
2017-11-02 10:10:46 -04:00
|
|
|
create_table :clusters_applications_helm do |t|
|
|
|
|
t.references :cluster, null: false, unique: true, foreign_key: { on_delete: :cascade }
|
2017-11-02 06:14:10 -04:00
|
|
|
|
|
|
|
t.datetime_with_timezone :created_at, null: false
|
|
|
|
t.datetime_with_timezone :updated_at, null: false
|
2017-11-02 12:08:56 -04:00
|
|
|
|
2017-11-02 10:10:46 -04:00
|
|
|
t.integer :status, null: false
|
2017-11-02 06:14:10 -04:00
|
|
|
t.string :version, null: false
|
|
|
|
t.text :status_reason
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|