cartodb-4.42/db/migrate/20200217133010_drop_oauth_nonce.rb
2024-04-06 05:25:13 +00:00

19 lines
403 B
Ruby

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
drop_table :oauth_nonces
end,
Proc.new do
create_table :oauth_nonces do
Uuid :id, primary_key: true
String :nonce
Integer :timestamp
DateTime :created_at, null: false
DateTime :updated_at, null: false
index [:nonce, :timestamp], unique: true
end
end
)