Skip to content

Commit 6d724a3

Browse files
authored
Adds column and index to auto_established_claims (#21488)
1 parent e54ce1a commit 6d724a3

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class AddHeaderHashToClaimsApiAutoEstablishedClaim < ActiveRecord::Migration[7.2]
2+
def change
3+
add_column :claims_api_auto_established_claims, :header_hash, :string
4+
end
5+
end
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
class AddIndexHeaderHashToClaimsApiAutoEstablishedClaim < ActiveRecord::Migration[7.2]
2+
disable_ddl_transaction!
3+
4+
def change
5+
add_index :claims_api_auto_established_claims, :header_hash, algorithm: :concurrently
6+
end
7+
end

db/schema.rb

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)