Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

20211213122101_drop_open_id_authentication_tables.rb 480B

123456789101112131415161718
  1. class DropOpenIdAuthenticationTables < ActiveRecord::Migration[6.1]
  2. def change
  3. drop_table :open_id_authentication_associations do |t|
  4. t.integer "issued"
  5. t.integer "lifetime"
  6. t.string "handle"
  7. t.string "assoc_type"
  8. t.binary "server_url"
  9. t.binary "secret"
  10. end
  11. drop_table :open_id_authentication_nonces do |t|
  12. t.integer "timestamp", null: false
  13. t.string "server_url"
  14. t.string "salt", null: false
  15. end
  16. end
  17. end