Skip to content

Commit

Permalink
Fixes #37403 - make repository rpm ID sequence bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
ianballou committed May 6, 2024
1 parent aa14f84 commit b405249
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class ChangeKatelloRepositoryRpmsIdSeqToBigInt < ActiveRecord::Migration[6.1]
def up
execute 'ALTER SEQUENCE katello_repository_rpms_id_seq AS bigint;'
end

def down
execute 'ALTER SEQUENCE katello_repository_rpms_id_seq AS integer;'
end
end

0 comments on commit b405249

Please sign in to comment.