X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/4abd9cfcf19701bf43322374c5df6dd586449e54..b17517e02cc9580b89a220d926292166aed25b9b:/db/migrate/20201214144017_expand_nonce_id.rb?ds=sidebyside diff --git a/db/migrate/20201214144017_expand_nonce_id.rb b/db/migrate/20201214144017_expand_nonce_id.rb index 9416ffe6a..1baa286fb 100644 --- a/db/migrate/20201214144017_expand_nonce_id.rb +++ b/db/migrate/20201214144017_expand_nonce_id.rb @@ -1,7 +1,11 @@ class ExpandNonceId < ActiveRecord::Migration[6.0] - def change + def up safety_assured do change_column :oauth_nonces, :id, :bigint end end + + def down + raise ActiveRecord::IrreversibleMigration + end end