#
# Table name: oauth_nonces
#
-# id :integer not null, primary key
+# id :bigint not null, primary key
# nonce :string
# timestamp :integer
# created_at :datetime
--- /dev/null
+class ExpandNonceId < ActiveRecord::Migration[6.0]
+ def change
+ safety_assured do
+ change_column :oauth_nonces, :id, :bigint
+ end
+ end
+end
--
CREATE TABLE public.oauth_nonces (
- id integer NOT NULL,
+ id bigint NOT NULL,
nonce character varying,
"timestamp" integer,
created_at timestamp without time zone,
('20191120140058'),
('20201006213836'),
('20201006220807'),
+('20201214144017'),
('21'),
('22'),
('23'),