openstreetmap-website/db/migrate/20240724194738_drop_oauth1_tables.rb
2024-09-01 03:43:02 +03:00

38 lines
974 B
Ruby

class DropOauth1Tables < ActiveRecord::Migration[7.1]
def change
remove_index :oauth_nonces, [:nonce, :timestamp], :unique => true
drop_table :oauth_nonces do |t|
t.string :nonce
t.integer :timestamp
t.timestamps :null => true
end
remove_index :oauth_tokens, :token, :unique => true
drop_table :oauth_tokens do |t|
t.integer :user_id
t.string :type, :limit => 20
t.integer :client_application_id
t.string :token, :limit => 50
t.string :secret, :limit => 50
t.timestamp :authorized_at, :invalidated_at
t.timestamps :null => true
end
remove_index :client_applications, :key, :unique => true
drop_table :client_applications do |t|
t.string :name
t.string :url
t.string :support_url
t.string :callback_url
t.string :key, :limit => 50
t.string :secret, :limit => 50
t.integer :user_id
t.timestamps :null => true
end
end
end