openstreetmap-website/db/migrate/20201214144017_expand_nonce_id.rb
2021-12-28 19:47:51 +00:00

11 lines
212 B
Ruby

class ExpandNonceId < ActiveRecord::Migration[6.0]
def up
safety_assured do
change_column :oauth_nonces, :id, :bigint
end
end
def down
raise ActiveRecord::IrreversibleMigration
end
end