class AdjustPetitionSequencesForTwentySeventeen < ActiveRecord::Migration - AdjustPetitionSequencesForTwentySeventeen has no descriptive comment
def up
execute "ALTER SEQUENCE archived_petitions_id_seq MAXVALUE 199999"
execute "ALTER SEQUENCE petitions_id_seq START WITH 200000 RESTART WITH 200000 MINVALUE 200000"
end
def down
execute "ALTER SEQUENCE archived_petitions_id_seq MAXVALUE 99999"
execute "ALTER SEQUENCE petitions_id_seq START WITH 100000 RESTART WITH 100000 MINVALUE 100000"
end
end