mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 22:05:56 +01:00
19 lines
480 B
Ruby
19 lines
480 B
Ruby
|
|
class DropOpenIdAuthenticationTables < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
drop_table :open_id_authentication_associations do |t|
|
||
|
|
t.integer "issued"
|
||
|
|
t.integer "lifetime"
|
||
|
|
t.string "handle"
|
||
|
|
t.string "assoc_type"
|
||
|
|
t.binary "server_url"
|
||
|
|
t.binary "secret"
|
||
|
|
end
|
||
|
|
|
||
|
|
drop_table :open_id_authentication_nonces do |t|
|
||
|
|
t.integer "timestamp", null: false
|
||
|
|
t.string "server_url"
|
||
|
|
t.string "salt", null: false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|