summaryrefslogtreecommitdiff
path: root/db/migrate/20200224020219_add_status_page_settings.rb
blob: b960b60881ee47946a5e8249a6cfc3a077645e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddStatusPageSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    create_table :status_page_settings, id: false do |t|
      t.references :project, index: true, primary_key: true, foreign_key: { on_delete: :cascade }, unique: true, null: false
      t.timestamps_with_timezone null: false
      t.boolean :enabled, default: false, null: false
      t.string :aws_s3_bucket_name, limit: 63, null: false
      t.string :aws_region, limit: 255, null: false
      t.string :aws_access_key, limit: 255, null: false
      t.string :encrypted_aws_secret_key, limit: 255, null: false
      t.string :encrypted_aws_secret_key_iv, limit: 255, null: false
    end
  end
end