You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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