summaryrefslogtreecommitdiff
path: root/db/migrate/20200921130028_add_pages_deployment_id_to_pages_metadata.rb
blob: 395ce43d8ac77883364e467c28034aa8b70275ae (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :project_pages_metadata, :pages_deployment_id, :bigint
  end
end